ios – 将按钮添加到UITableViewCell的附件视图

ios – 将按钮添加到UITableViewCell的附件视图,第1张

概述目标:当用户选择单元格时,将向该单元格添加一个按钮.在我的didSelectRowAtIndexPath函数中,我有以下内容: UIButton *downloadButton = [[UIButton alloc] init];downloadButton.titleLabel.text = @"Download";[downloadButton setFrame:CGRectMake(40 目标:当用户选择单元格时,将向该单元格添加一个按钮.在我的dIDSelectRowAtIndexPath函数中,我有以下内容:
UIbutton *downloadbutton = [[UIbutton alloc] init];downloadbutton.TitleLabel.text = @"Download";[downloadbutton setFrame:CGRectMake(40,100,20)];[[self.tableVIEw cellForRowAtIndexPath:indexPath].accessoryVIEw addSubvIEw:downloadbutton];[[self.tableVIEw cellForRowAtIndexPath:indexPath].accessoryVIEw setNeedsLayout];[downloadbutton release];

不幸的是,似乎没有做任何事情.我是否重新修复细胞校正?我需要添加另一种方式吗?

解决方法 尝试这个代码块而不是上面提供的块
UIbutton *downloadbutton = [UIbutton buttonWithType:UIbuttonTypeRoundedRect];[downloadbutton setTitle:@"Download" forState:UIControlStatenormal];[downloadbutton setFrame:CGRectMake(0,35)];[tableVIEw cellForRowAtIndexPath:indexPath].accessoryVIEw = downloadbutton;

这应该显示按钮,但是您仍然需要使用addTarget连接某些选择器. (我不知道如果在这个例子中听的附件buttonTappedForRowWithIndexPath委托将工作,请先尝试,看看它是否按下按钮触发.)

总结

以上是内存溢出为你收集整理的ios – 将按钮添加到UITableViewCell的附件视图全部内容,希望文章能够帮你解决ios – 将按钮添加到UITableViewCell的附件视图所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1111444.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存