我有一个有自定义单元格的 UITableView
。 这些单元格包含一些文字字段。 当我在这里输入一些文本字段中的数据, 并滚动表格视图数据时, 它会消失, 我想因为每次它创建新单元格时都会消失 。
我用一个阵列和插入每个单元格来解决这个问题, 但在这里我无法再利用单元格, 所以我们在浪费记忆。
你能告诉我县长的方式 我该怎么处理这行为吗?
我有一个有自定义单元格的 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> 以查看是否有可用的单元格可以再利用。 如果没有的话, 将返回零。 这是您使用 < code> init withoutStyle: reuseIdidation: 方法创建单元格的地方, 该方法标记单元格在滚动出视图时适合再利用。 这意味着您只会在最大程度上即时即时显示的单元格总数, 使表格的内存足迹保持优和低。
请注意,我们将单元格s text Field.text
设置在“无”检查之外 - 这是为了确保如果我们检索到一个可重复使用的单元格,我们将用即将传递到该方法的indepath
的文字内容覆盖其旧文本内容。
使用一个数组以存储每个文本字段的值,并在
- (UITableViewCell *)tableView:(UITableView *)tTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
方法
For a basic app with nonconsumable in-app purchases, has anyone figured out best practices for using SKPaymentQueue s restoreCompletedTransactions? Observations I know it s recommended to always ...
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: - (...
I have a UITextField that is a subview of a UITableViewCell. When my view loads, I want the text field to become first responder. I have a pointer to the text field in the table cell, so to do this I ...
I ve been working on adding in-app purchases and was able to create and test in-app purchases using Store Kit (yay!). During testing, I exercised my app in a way which caused the app to crash mid ...
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). ...
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 ...
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:...
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, ...