全局声明 uiimages 的 NSMutablearray
我想声明一个全局数组,这样我就可以在应用程序中的所有方法和每个位置使用它。我有两个按钮,其中 1 显示数组中的下一个图像,另一个按钮显示上一个显示的图像。我希望两个按钮使用相同的数组。
NSMutableArray *images = [[NSMutableArray alloc]
initWithObjects:@"Americans.png",
@"Approach.png",
@"Arianny.png",
@"Atoms.png",
@"Australia.png",nil];
I want to declare a global array so I can use this in all methods and every where in my app. I have two buttons which 1 shows the next image in the array and the other button shows the previous image shown. I want both buttons to use the same array.
NSMutableArray *images = [[NSMutableArray alloc]
initWithObjects:@"Americans.png",
@"Approach.png",
@"Arianny.png",
@"Atoms.png",
@"Australia.png",nil];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能想看看这个问题。我建议将其放入您的 AppDelegate 或创建一个
You might want to take a look at this question. I'd suggest going with putting it in your
AppDelegate
or creating a singleton.您可以使用dispatch_once来分配静态对象:
通常您会将其包装在实用程序类的函数或类方法中。
You can use dispatch_once to allocate a static object:
Generally you would wrap this in a function or a class method of a utility class.