swift UI专项训练11 ActionSheet

        ActionSheet字面意思是动作表,那么它有什么用呢?它就是一个菜单,上面有很多选择,让用户选择或者取消,取消按钮式必须有的。它的基类是UIActionSheet,它的参数主要就是菜单上按钮的样式。它可以从视图中显示(ShowInView),也可以从一个按钮中显示(ShowFrom..),此外还需要有回调,我调用菜单,同时我需要把菜单里面的东西拿回来,这就是回调。

       新建一个工程ActionSheet,然后在界面上添加一个label和button,拖到控制器中,如下:


swift UI专项训练11 ActionSheet_第1张图片

然后在按钮的action中加入代码:

    @IBAction func fenxiang(sender: UIButton) {
        
        let actionSheet1 = UIActionSheet(title: nil, delegate: self, cancelButtonTitle: "取消分享", destructiveButtonTitle: "分享到微信", otherButtonTitles: "分享到空间")
        actionSheet1.showInView(self.view)
    }

actionsheet中有很多参数,tittle是标题,cancelButtonTitle是取消按钮,destructiveButtionTitle是一个红色显眼的按钮,而otherButtonTitles是其他的按钮,可以有很多个。


swift UI专项训练11 ActionSheet_第2张图片


然后我们来添加一个点击action sheet中条目的操作,方法如下:

func actionSheet(actionSheet: UIActionSheet, clickedButtonAtIndex buttonIndex: Int) {
            xianshi.text = actionSheet.buttonTitleAtIndex(buttonIndex)
        }

点击之后,label中会显示我们刚点击的内容:




你可能感兴趣的:(ios8,swift,UI设计,ActionSheet)