0
A
回答
2
這是UIAlertController
。在ios7之前,它被知道爲UIActionSheet
A UIAlertController
對象向用戶顯示警報消息。這個類代替UIActionSheet和UIAlertView類來顯示警報。
@IBAction func showActionSheetTapped(sender: AnyObject) {
//Create the AlertController
let actionSheetController: UIAlertController = UIAlertController(title: "Action Sheet", message: "Swiftly Now! Choose an option!", preferredStyle: .ActionSheet)
//Create and add the Cancel action
let cancelAction: UIAlertAction = UIAlertAction(title: "Cancel", style: .Cancel) { action -> Void in
//Just dismiss the action sheet
}
actionSheetController.addAction(cancelAction)
//Create and add first option action
let takePictureAction: UIAlertAction = UIAlertAction(title: "Take Picture", style: .Default) { action -> Void in
//Code for launching the camera goes here
}
actionSheetController.addAction(takePictureAction)
//Create and add a second option action
let choosePictureAction: UIAlertAction = UIAlertAction(title: "Choose From Camera Roll", style: .Default) { action -> Void in
//Code for picking from camera roll goes here
}
actionSheetController.addAction(choosePictureAction)
//Present the AlertController
self.presentViewController(actionSheetController, animated: true, completion: nil)
}
輸出:
也許它會幫助你。
+0
做得好@Bhurnica –
+0
@rayjohn編碼愉快! – BHUMICA
相關問題
- 1. 這是什麼「Log」課程?
- 2. 這個字段的名字是什麼?
- 3. 這個角色的名字是什麼?
- 4. 這個UIControl的名字是什麼?
- 5. 這個元素的名字是什麼?
- 6. 這個界面的名字是什麼?
- 7. 這個算法的名字是什麼?
- 8. 這個班的名字是什麼?
- 9. 這是什麼名字?
- 10. 這個「scroller」是什麼名字?
- 11. 谷歌課堂課程中的「部分」字段是什麼?
- 12. 部分課程是什麼?
- 13. 這個算法流程表示法的名字是什麼?
- 14. 什麼是這個標誌{0}的名字,這是什麼意思?
- 15. 這些課程爲什麼不完整?
- 16. 這種字體的名稱是什麼?
- 17. 這場比賽的名字是什麼?
- 18. 這棵樹的名字是什麼?
- 19. 這本詞典的名字是什麼?
- 20. 這種模式的名字是什麼?
- 21. 這類事情的名字是什麼?
- 22. 什麼是這個字體?
- 23. 這個課程爲什麼會凍結程序?
- 24. 什麼是最終的內部課程?
- 25. 什麼是「近乎空虛」的課程?
- 26. 什麼是您最重用的課程?
- 27. 爲什麼課程是隻讀的?
- 28. 什麼是建議的課程大小?
- 29. Dart中的課程類型是什麼?
- 30. 這個名字中的3位數字是什麼?
貌似UIAlertController – Leo
的確,風格ActionSheet –
的在Xcode中6 UIActionShit而現在的Xcode 7是UIAlertController增加了 「UIActionShit」 也 – Nilesh