- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { UITableViewCell *cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil] autorelease]; // Make cell unselectable cell.selectionStyle = UITableViewCellSelectionStyleNone; cell.textLabel.text = cellValue; UITextField* tf = nil ; switch ( indexPath.row ) { case 0: { cell.textLabel.text = @"Name" ; tf = nameField_ = [self makeTextField:self.name placeholder:@"sathish"]; [cell addSubview:nameField_]; break ; } case 1: { cell.textLabel.text = @"Address" ; tf = addressField_ = [self makeTextField:self.address placeholder:@"[email protected]"]; [cell addSubview:addressField_]; break ; } case 2: { cell.textLabel.text = @"Password" ; tf = passwordField_ = [self makeTextField:self.password placeholder:@"Required"]; [cell addSubview:passwordField_]; break ; } case 3: { cell.textLabel.text = @"Description" ; tf = descriptionField_ = [self makeTextField:self.description placeholder:@"My Gmail Account"]; [cell addSubview:descriptionField_]; break ; } } tf.frame = CGRectMake(120, 12, 170, 30); [tf addTarget:self action:@selector(textFieldFinished:) forControlEvents:UIControlEventEditingDidEndOnExit]; tf.delegate = self ; return cell; }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง