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的附件视图所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)