0

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];
4

1 に答える 1

0

最新の XCode バージョンを使用していない場合は、次のようにこのプロパティを明示的に合成する必要があります

@synthesize presentationStyle = _presentationStyle; etc........
于 2013-05-25T12:01:10.807 に答える