0
A
回答
1
已經創建和模板結合的方法,這樣只是改變insertNewObject
方法這樣
- (void)insertNewObject:(id)sender
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Alert" message:@"This is an alert" delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil];
[alert show];
}
0
你應該創造一個
-(IBAction)SomeAction{ //display your alert view }
不要忘記把它掛在IB
+0
但是,我怎麼知道用戶何時按下了添加(+)按鈕? – ivantxo 2012-03-27 10:00:53
1
使用以下代碼,
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(addButtonActionName)];
它會在導航欄的右上角顯示+
按鈕。
-(void) addButtonActionName {
// Your code for the Alert view
}
0
下面是在導航添加BarButton酒吧
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(ShowMyAlert:)];
&這是爲事件處理代碼...
- (void)ShowMyAlert:(id)sender
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Alert" message:@"Test Alert Message" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
[alert release];
}
相關問題
- 1. 向後退按鈕添加操作
- 2. 按鈕添加項目的操作
- 3. 將操作添加到NSRunAlertPanel的按鈕
- 4. 在HTML中添加操作按鈕
- 5. 添加iPhone分享按鈕
- 6. 如何將操作按鈕/操作添加到UILocalNotification警報中?
- 7. Android。我想添加操作以將操作添加到main.xml按鈕
- 8. 按鈕操作沒有響應iphone
- 9. 將「清除」按鈕添加到iPhone UITextField
- 10. 將按鈕添加到iPhone prefs/settings包?
- 11. 如何將PNG添加UIAlert按鈕iphone
- 12. 如何將按鈕添加到textfield iphone?
- 13. 添加按鈕動作條
- 14. iPhone按鈕動作
- 15. HTML按鈕 - 操作?
- 16. UIAlertView按鈕操作?
- 17. 的按鈕操作
- 18. Laravel按鈕操作
- 19. 在操作欄中添加按鈕。不是菜單,只是按鈕
- 20. iPhone:添加按鈕scrollview使按鈕無法進入交互
- 21. iPhone app像「添加到主屏幕」按鈕的按鈕樣式
- 22. 從UIView(.xib)加載UIViewController按鈕操作
- 23. 使用浮動操作按鈕添加組件
- 24. 將按鈕添加到安卓操作欄
- 25. 不能將按鈕/項目添加到Android操作欄
- 26. Xamarin - 在操作欄添加標題和按鈕
- 27. 如何將操作添加到我的通知按鈕?
- 28. 添加主頁按鈕操作欄的最後一項活動
- 29. 按鈕單擊添加操作URL的jQuery
- 30. 如何將操作添加到編程式按鈕?
你必須加寫btn行動方法 – 2012-03-27 10:00:04