gpt4 book ai didi

iphone-sdk-3.0 - iPhone SDK 3.0 弃用 UITableViewCell .text

转载 作者:行者123 更新时间:2023-12-01 11:09:53 26 4
gpt4 key购买 nike

我遇到了一个 SDK3.0 弃用问题,我在尝试弄清楚这个问题时遇到了一些麻烦。如果我的声明

@property (nonatomic, retain) UIImage *rowImage;

没有用,也没有

@property (nonatomic, readonly, retain) UIImage *rowImage;

和我

@synthesize rowImage;

我是否需要编写自己的 setter,因为 @synthesize 无法正确处理它?<​​/p>

<hr>

cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:RootViewControllerCell] autorelease];


// Dpericated in SDK 3.0 <br>
//<br>
//cell.text = controller.title;<br>
//cell.image = controller.rowImage;<br>

// Using what the documentation says to use
Error===> cell.textLabel = controller.title;<br>
Error===> cell.imageView = controller.rowImage;<br>

Error: Object cannot be set - Either readonly property or no setter found.

希望这是有道理的,我们将不胜感激。

最佳答案

您也可以使用通常的 .-syntax:

cell.textLabel.text = controller.title;

关于iphone-sdk-3.0 - iPhone SDK 3.0 弃用 UITableViewCell .text,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1186129/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com