English 中文(简体)
UITableViewCell 滚动表视图时存档的文本已存档的消失数据
原标题:UITableViewCell text filed disappear data on scrolling the tableview

我有一个有自定义单元格的 UITableView 。 这些单元格包含一些文字字段。 当我在这里输入一些文本字段中的数据, 并滚动表格视图数据时, 它会消失, 我想因为每次它创建新单元格时都会消失 。

我用一个阵列和插入每个单元格来解决这个问题, 但在这里我无法再利用单元格, 所以我们在浪费记忆。

你能告诉我县长的方式 我该怎么处理这行为吗?

最佳回答

这似乎与您如何在 tableView: CellFororRowAtIndexPath: 方法中创建单元格有关。 但看不到您的执行, 我只能提出一些一般建议( 在您的问题中添加您的执行, 以便人们能够用他们的答案更具体一点 ) 。

如果您担心内存, 请使用 UITableView s 内建细胞再利用功能, 以下列方式创建您的单元格 :

NSString *identifier = @"reuseIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier] autorelease];
}
cell.textLabel.text = @"text relating to index path";

以上将检查 < code> tabableView 以查看是否有可用的单元格可以再利用。 如果没有的话, 将返回零。 这是您使用 < code> init withoutStyle: reuseIdidation: 方法创建单元格的地方, 该方法标记单元格在滚动出视图时适合再利用。 这意味着您只会在最大程度上即时即时显示的单元格总数, 使表格的内存足迹保持优和低。

请注意,我们将单元格s text Field.text 设置在“无”检查之外 - 这是为了确保如果我们检索到一个可重复使用的单元格,我们将用即将传递到该方法的indepath 的文字内容覆盖其旧文本内容。

问题回答

使用一个数组以存储每个文本字段的值,并在

- (UITableViewCell *)tableView:(UITableView *)tTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

方法





相关问题
List Contents of Directory in a UITableView

I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...

iPhone NSUserDefaults persistance difficulty

In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...

Writing a masked image to disk as a PNG file

Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...

Resize UIImage with aspect ratio?

I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...

Allowing interaction with a UIView under another UIView

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...

热门标签