2013-04-05 51 views
-1

@表示法在Objective-C中是什麼意思? 例如:self.splitViewController.viewControllers = @[masterNavigationController, detailNavigationController];@表示法?

+0

你可以在Google的StackOverflow上搜索該問題。 [這個答案非常詳細](http://stackoverflow.com/questions/25749/what-does-the-symbol-represent-in-objective-c)。 – MarcoK 2013-04-05 12:18:34

+0

Google?但是SO也有搜索領域。爲什麼不使用這個??! – uchuugaka 2013-04-05 12:22:45

回答

2

這些literals因爲蘋果LLVM編譯器4.0 /鐺V3.1,您可以使用。有關詳細的概述,請參閱Objective-C Literals

0

@是編譯器指令的印記。 (基本宏)

在您的示例中,您將看到NSArray Literal的語法。

@ [elementObject,anotherElementObject,...];