首页 > 代码库 > UITableView定制左滑效果
UITableView定制左滑效果
UITableViewRowAction类
object defines a single action to present when the user swipes horizontally in a table
类的属性
style: UITableViewRowActionStyle
按钮的style,default
和normal
效果如上图title: String?
按钮的标题啦backgroundColor: UIColor?
按钮的颜色
初始化方法
convenience init(style: UITableViewRowActionStyle, title: String?, handler: (UITableViewRowAction, IndexPath) -> Void)
handler即使点击时调用的方法。
如何实现效果
初始化UITableViewRowAction
let action1 = UITableViewRowAction.init(style: .Normal, title: "normal") { (action, path) in } let action2 = UITableViewRowAction.init(style: .Default, title: "default") { (action, path) in self.titles.removeAtIndex(0) self.tableView?.deleteRowsAtIndexPaths([path], withRowAnimation: .Fade) } self.actions.insert(action1, atIndex: 0) self.actions.insert(action2, atIndex: 1) ```
实现代理方法
func tableView(tableView: UITableView, editActionsForRowAtIndexPath indexPath: NSIndexPath) -> [UITableViewRowAction]? { return self.actions }
UITableView定制左滑效果
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。