如何在iphone项目中使用AHAlertView?

时间:2013-05-25 11:27:12

标签: iphone ios uialertview

我一直在尝试在我的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];

1 个答案:

答案 0 :(得分:0)

如果您没有使用最新的XCode版本,则需要明确合成此属性,如

@synthesize presentationStyle = _presentationStyle; etc........