File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -388,7 +388,7 @@ - (NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)
388388 return numRows;
389389}
390390
391- - (void )tableView : (UITableView*) tableView willDisplayCell : (UITableViewCell*)cell forRowAtIndexPath : (NSIndexPath *)indexPath {
391+ - (void )layoutCell : (UITableViewCell*)cell forRowAtIndexPath : (NSIndexPath *)indexPath {
392392 cell.backgroundColor = [Utilities getSystemGray6 ];
393393 cell.tintColor = [Utilities getSystemBlue ];
394394 cell.accessoryType = UITableViewCellAccessoryNone;
@@ -685,6 +685,7 @@ - (UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSI
685685 textInputField.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin;
686686 [cell.contentView addSubview: textInputField];
687687 }
688+ [self layoutCell: cell forRowAtIndexPath: indexPath];
688689 return cell;
689690}
690691
You can’t perform that action at this time.
0 commit comments