Iphone プロジェクトで AHALertView を使用しようとしましたが、動作しません。AHAlertView のサンプル プロジェクトを実行しても、コンパイルされず、「宣言されていない識別子の使用」という 13 個のエラーやその他の警告も表示されます。 . 誰もそのような問題に直面していますか? はいの場合、どうすれば修正できますか?
コードは次のとおりです。
- (IBAction)addEmail:(id)sender
{
AHAlertView *addFriendAlertView = [[AHAlertView alloc]initWithTitle:@"Add New Contact" message:@"Enter New E-mail"];
addFriendAlertView.alertViewStyle = AHAlertViewStylePlainTextInput;
[addFriendAlertView setCancelButtonTitle:@"Cancel" block:^{
NSLog(@"User cancelled the alert instead of entering new address");
}];
[addFriendAlertView addButtonWithTitle:@"OK" block:^{
NSLog(@"User entered the email :- %@",[addFriendAlertView textFieldAtIndex:0].text);
}];
[addFriendAlertView show];