2013-05-25 53 views
0

我一直試圖在我的iPhone項目中使用AHALertView,但它不工作。即使我運行AHAlertView的示例項目,它不會編譯並顯示多達13個錯誤,說'未聲明的標識符的使用'和其他警告以及。 有沒有人遇到過這樣的問題?如果是的話,我該如何解決它?如何在iphone項目中使用AHAlertView?

下面是代碼: -

- (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

這個屬性最新的XCode版本https://github.com/warrenm/ AHAlertView非常詳細,根據錯誤未聲明什麼? –

+0

使用未聲明的標識符'_presentationStyle','_ dissmissalStyle,'_ title'等。 – icodes

回答

0

如果你不使用你需要明確地合成像

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

thanx它幫助... :-) – icodes