5

我遵循了使用UITableView. 完成的代码

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if(editingStyle == UITableViewCellEditingStyleDelete)
    {
        Message *message = [messageList objectAtIndex:indexPath.row];
        [self.persistencyService deleteMessagesFor:message.peer];
        [messageList removeObject:message];
        [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationLeft];
    }
}

我的问题是:@[indexPath]做什么?是一样的吗?:

[NSArray arrayWithObject:indexPath]
4

2 回答 2

9

是的,它是一样的,它只是定义数组的简写。你也可以对 NSDictionary 和 NSNumber 做同样的事情。这里有一些样本(还有更多这里)

NSArray *shortNotationArray = @[@"string1", @"string2", @"string3"];

NSDictionary *shortNotationDict = @{@"key1":@"value1", @"key2":@"value2"};

NSNumber *shortNotationNumber = @69;
于 2013-09-04T14:10:55.340 回答
2

是的。这是现代objective-C的一个新特性。

您可以使用文字创建新数组@,就像在您的示例中一样。这不仅适用于NSArrays,而且适用于NSNumbersand NSDictionaries,例如:

NSNumber *fortyTwo = @42;   // equivalent to [NSNumber numberWithInt:42]

NSDictionary *dictionary = @{
    @"name" : NSUserName(),
    @"date" : [NSDate date],
    @"processInfo" : [NSProcessInfo processInfo] //dictionary with 3 keys and 3 objects
};

NSArray *array = @[@"a", @"b", @"c"]; //array with 3 objects

访问元素也很好,如下所示:

NSString *test = array[0]; //this gives you the string @"a"

NSDate *date = dictionary[@"date"]; //this access the object with the key @"date" in the dictionary

您可以在这里获得更多信息:http: //clang.llvm.org/docs/ObjectiveCLiterals.html

于 2013-09-04T14:16:14.557 回答