我正在尝试获取一个添加按钮来将行添加到表中,然后可以对其进行编辑。我得到了第 10、17 和 30 行的预期标识符或“(”。这是代码:
- (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