overrIDe func tableVIEw(tableVIEw: UItableVIEw,cellForRowAtIndexPath indexPath: NSIndexPath) -> UItableVIEwCell { let key = keyArray[indexPath.section-1] let label = UILabel(frame: CGRectMake(0,26,28)) label.center = CGPointMake(26,28) cell.accessoryVIEw = label} overrIDe func tableVIEw(tableVIEw: UItableVIEw,accessorybuttonTappedForRowWithIndexPath indexPath: NSIndexPath) { print(indexPath) }
为什么自定义标签或自定义按钮不能调用accessorybuttonTappedForRowWithIndexPath.或者只有一种方法将mybutton添加到单元格?
解决方法 对于自定义按钮,您可以为特定事件添加目标,accessorybuttonTappedForRowWithIndexPath将不适用于自定义视图请参考:
总结以上是内存溢出为你收集整理的ios – accessoryButtonTappedForRowWithIndexPath不适用于自定义按钮或标签全部内容,希望文章能够帮你解决ios – accessoryButtonTappedForRowWithIndexPath不适用于自定义按钮或标签所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)