首页 > 代码库 > UIActionSheet的写法

UIActionSheet的写法

UIActionSheet的写法

by 伍雪颖

let actionSheet = UIActionSheet(title: "ActionSheet", delegate: self, cancelButtonTitle: "Cancel", destructiveButtonTitle: "Destroy", otherButtonTitles: "OK")
actionSheet.actionSheetStyle = .Default
actionSheet.showInView(self.view)


UIActionSheet的写法