- (UItableVIEwCell *)tableVIEw:(UItableVIEw *)tableVIEw cellForRowAtIndexPath:(NSIndexPath *)indexPath{ static Nsstring *CellIDentifIEr = @"Cell"; MaintableVIEwCell *cell = [tableVIEw dequeueReusableCellWithIDentifIEr:CellIDentifIEr]; if (cell == nil) { NSArray* vIEws = [[NSBundle mainBundle] loadNibnamed:@"MaintableVIEwCell" owner:nil options:nil]; for (UIVIEw *vIEw in vIEws) { if([vIEw isKindOfClass:[UItableVIEwCell class]]) { cell = (MaintableVIEwCell *)vIEw; } } }@H_403_4@解决方法 尝试自定义tableVIEw:willdisplayCell:方法中的单元格,如下所示:
- (voID)tableVIEw:(UItableVIEw *)tableVIEw willdisplayCell:(UItableVIEwCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath { cell.backgroundcolor = [UIcolor redcolor];}@H_403_4@ @H_403_4@ @H_403_4@ @H_403_4@ 总结
以上是内存溢出为你收集整理的iPhone – 无法更改UITableViewCell背景色全部内容,希望文章能够帮你解决iPhone – 无法更改UITableViewCell背景色所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)