这是我定制的init方法.我对“风格”的想法感到困惑,我想我只是用一个不同的backgroundVIEw返回一个普通的UItableVIEwCell.我的意思是,那里没有任何东西引用.xib或做任何事情,只是从自己改变.backgroundVIEw:
- (ID)initWithStyle:(UItableVIEwCellStyle)style reuseIDentifIEr:(Nsstring *)reuseIDentifIEr wait: (float) wait fadeOut: (float) fadeOut fadeIn: (float) fadeIn playFor: (float) playFor{ self = [super initWithStyle:style reuseIDentifIEr:reuseIDentifIEr]; if (self) { CueLoadingVIEw* lvIEw = [[CueLoadingVIEw alloc] initWithFrame:CGRectMake(0,320,53)]; self.backgroundVIEw = lvIEw; [self setWait:wait]; // in turn edits the lvIEw through the backgrounVIEw pointer [self setFadeOut:fadeOut]; [self setFadeIn:fadeIn]; [self setPlayFor:playFor]; } return self;}
除了.xib和几个setter和getter之外,这是我的代码中唯一真正的部分,它与检索单元格有关.
附加信息:
1)这是我的.xib,它与班级相关联.
2)这是调用/创建UItableVIEw(委托/视图控制器)的代码:
- (UItableVIEwCell *)tableVIEw:(UItableVIEw *)tableVIEw cellForRowAtIndexPath:(NSIndexPath *)indexPath{ static Nsstring *simpletableIDentifIEr = @"CuetableCell"; CuetableCell *cell = [tableVIEw dequeueReusableCellWithIDentifIEr:simpletableIDentifIEr]; if (cell == nil) { cell = [[CuetableCell alloc] initWithStyle:UItableVIEwCellStyleDefault reuseIDentifIEr:simpletableIDentifIEr wait:5.0 fadeOut:1.0 fadeIn:1.0 playFor:10.0]; [cell updateBarat:15]; } return cell;}解决方法 在nib文件中创建自定义表格视图单元格的最简单方法(自iOS 5.0起可用)是在表格视图控制器中使用registerNib:forCellReuseIDentifIEr :.最大的优点是dequeueReusableCellWithIDentifIEr:然后在必要时自动从nib文件中实例化一个单元格.你不再需要if(cell == nil)… part.
在您添加的表视图控制器的vIEwDIDLoad中
[self.tableVIEw registerNib:[UINib nibWithNibname:@"CuetableCell" bundle:nil] forCellReuseIDentifIEr:@"CuetableCell"];
你可以在cellForRowAtIndexPath中完成
CuetableCell *cell = [tableVIEw dequeueReusableCellWithIDentifIEr:@"CuetableCell"];// setup cellreturn cell;
从nib文件加载的单元格使用initWithCoder进行实例化,如有必要,可以在子类中覆盖它.要修改UI元素,您应该覆盖awakeFromNib(不要忘记调用“super”).
总结以上是内存溢出为你收集整理的iphone – 自定义UITableViewCell不使用.xib(最可能因为init方法中的缺陷)全部内容,希望文章能够帮你解决iphone – 自定义UITableViewCell不使用.xib(最可能因为init方法中的缺陷)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)