有兩個UITextField,我想要檢測UITextField,當滿足兩個UITextField都有文本內容時,顯示alert,如果只有一個UITextField有文本內容時向下一步進行。
if([txt1.text length] > 0 && [txt2.text length]>0)
{
UIAlertView * alert=[ [UIAlertView alloc]initWithTitle:@"Alert" message:@"TextFied Have an Text" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:nil, nil];
[alert show];
}
else
{
//Go Forword
}