我碰巧看到一个特定的代码,
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[self.tableView insertRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
注释的名称是什么@[indexPath]
,我从来没有见过这种。并且自从它在objective-C中引入以来。我知道它取代了[NSArray arrayWithObjects:indexPath,nil]
,还有其他功能吗?使用它的功能是什么(嗯,除了更短)?
谢谢。