ビューにテキスト フィールドがあります。このテキスト フィールド テーブル ビューを編集しているときは、単に intellisense を作成する必要があります。このテーブル ビューは、ビュー内のラベルをカバーしています
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *selectedCell = [tableView cellForRowAtIndexPath:indexPath];
txtcity.text = selectedCell.textLabel.text;
[viewForautoCompleteTableView removeFromSuperview];
}
それでも私のラベルは表示されません