【发布时间】:2016-04-26 00:08:09
【问题描述】:
我想从警报操作中删除标题部分。
制作标题字符串"" 不会删除标题部分
@IBAction func addImage(sender: AnyObject!) {
let alert:UIAlertController = UIAlertController(title: "" ,message: nil, preferredStyle: UIAlertControllerStyle.ActionSheet)
let cameraAction = UIAlertAction(title: "Take Photo", style: UIAlertActionStyle.Default)
{
UIAlertAction in
self.openCamera()
}
let gallaryAction = UIAlertAction(title: "Choose Photo", style: UIAlertActionStyle.Default)
{
UIAlertAction in
self.openGallary()
}
let cancelAction = UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Cancel)
{
UIAlertAction in
}
// Add the actions
alert.addAction(cameraAction)
alert.addAction(gallaryAction)
alert.addAction(cancelAction)
// Present the controller
self.presentViewController(alert, animated: true, completion: nil)
}
这就是我得到的:
如何将标题部分一起删除?
【问题讨论】:
-
您是否尝试过传递 'nil' 而不是空字符串?这是一个可选值
-
啊……那行得通。如果您想将其发布为答案,我会接受。
标签: ios swift uialertcontroller