我想要獲得一個添加按鈕來添加行到一個表,然後可以編輯 我得到預期的標識符或'('行10, 17,和30以下是代碼:期望的標識符或'('在xcode 4.6.1
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
UILabel *lblName = (UILabel *)[cell viewWithTag:100];
[lblName setText:[intervalArray objectAtIndex:[indexPath row]]];
return cell;
}
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:CellIdentifier];
cell.accessoryType = UITableViewCellAccessoryNone;
}
if ([indexPath section]) == 0 {
UITextField *workoutTextField = [[UITextField alloc] initWithFrame:CGRectMake(110, 10, 185, 30)];
workoutTextField.adjustsFontSizeToFitWidth = YES;
workoutTextField.textColor = [UIColor blackColor];
if ([indexPath row] == 0) {
workoutTextField.placeholder = @"...";
workoutTextField.keyboardType = UIKeyboardTypeEmailAddress;
workoutTextField.returnKeyType = UIReturnKeyNext;
}}
// Configure the cell...
return cell;
我已經試過你的建議,他們擺脫了所有的錯誤,但我仍然無法行與按鈕添加到我的餐桌任何建議。關於如何添加行到表中將不勝感激,這是我的第一個iOS應用程序,並且對於編程來說我是相當新的。感謝所有的幫助! 我正在使用OS X 10.8.3
是的......你找到答案:) +1 – 2013-04-10 18:43:12