1 通过重写tablevIEw的单元格绘制方法来添加按钮
2 重写获取tablevIEw的单元格高度方法
代码如下:
//设置日期按钮共7*6个 overrIDe func tableVIEw(tableVIEw: UItableVIEw,cellForRowAtIndexPath indexPath: NSIndexPath) -> UItableVIEwCell { let cell=super.tableVIEw(tableVIEw,cellForRowAtIndexPath: indexPath) //判断是否为目标单元格 if indexPath.section == 1 && indexPath.row == 0{ //设置x,y位置和宽高 let button = UIbutton(frame: CGRectMake(0,50,120,30)) //设置按钮文字 button.setTitle("1",forState: UIControlState.normal) //设置字体颜色 button.setTitlecolor(UIcolor.lightGraycolor(),forState: UIControlState.normal) //设置点击事件 button.addTarget(self,action: "onClick",forControlEvents: UIControlEvents.touchUpInsIDe) //加到单元格中 cell .contentVIEw.addSubvIEw(button) } return cell } //因为按钮插入后会引起cell高度的变化,所以要重新设置 overrIDe func tableVIEw(tableVIEw: UItableVIEw,heightForRowAtIndexPath indexPath: NSIndexPath) -> CGfloat { if indexPath.section == 1 && indexPath.row == 0{ return 24*7 }else{ return super.tableVIEw(tableVIEw,heightForRowAtIndexPath: indexPath) } } ///点击日期按钮的动作 func onClick(){ ///d出选中日期的打卡记录 UIAlertVIEw(Title: "打卡情况",message: "上班:正常;下班:正常",delegate: nil,cancelbuttonTitle: "确定",otherbuttonTitles: "取消").show() }总结
以上是内存溢出为你收集整理的swift开发笔记6 - 在表格单元格中添加按钮全部内容,希望文章能够帮你解决swift开发笔记6 - 在表格单元格中添加按钮所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)