iphone – 奇怪的objective-c语法 – 方括号和@符号

iphone – 奇怪的objective-c语法 – 方括号和@符号,第1张

概述我在我的一个项目中使用GHSidebarNav,我遇到了这个代码分配一个对象数组.我只是不知道它在做什么.它只是一个阵列吗?什么是这种奇怪的@ […]语法?我之前没见过: NSArray *controllers = @[ @[ [[UINavigationController alloc] initWithRootViewController:[[GHRootViewCo 我在我的一个项目中使用GHSIDebarNav,我遇到了这个代码分配一个对象数组.我只是不知道它在做什么.它只是一个阵列吗?什么是这种奇怪的@ […]语法?我之前没见过:

NSArray *controllers = @[    @[        [[UINavigationController alloc] initWithRootVIEwController:[[GHRootVIEwController alloc] initWithTitle:@"Profile" withRevealBlock:revealBlock]]    ],@[        [[UINavigationController alloc] initWithRootVIEwController:[[GHRootVIEwController alloc] initWithTitle:@"News Feed" withRevealBlock:revealBlock]],[[UINavigationController alloc] initWithRootVIEwController:[[GHMessagesVIEwController alloc] initWithTitle:@"Messages" withRevealBlock:revealBlock]],[[UINavigationController alloc] initWithRootVIEwController:[[GHRootVIEwController alloc] initWithTitle:@"Nearby" withRevealBlock:revealBlock]],[[UINavigationController alloc] initWithRootVIEwController:[[GHRootVIEwController alloc] initWithTitle:@"Events" withRevealBlock:revealBlock]],[[UINavigationController alloc] initWithRootVIEwController:[[GHRootVIEwController alloc] initWithTitle:@"FrIEnds" withRevealBlock:revealBlock]]    ]];
解决方法 这些是数组文字,一种容器文字,Xcode 4.4及更高版本中的 available.

看到:

> discussion of arrays in the Programming with Objective C的“文字语法”部分
> Objective-C Literals在LLVM站点进行讨论
> WWDC 2012 Modern Objective-C,大约需要19-20分钟
> WWDC 2012 Migrating to Modern Objective-C

总结

以上是内存溢出为你收集整理的iphone – 奇怪的objective-c语法 – 方括号和@符号全部内容,希望文章能够帮你解决iphone – 奇怪的objective-c语法 – 方括号和@符号所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1086130.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存