我有一个需要从数据库访问客户的应用程序。我有数据数组,但我需要在我的应用程序中的几个视图中共享它。
我创建了这个名为“客户”的类,但我不确定如何调用和设置/获取我NSMutableArray
的客户。
有没有一个很好的例子或者有人可以给我看的代码片段?
#import "Customers.h"
@implementation Customers
static NSMutableArray *customers;
// I need to set/access the customers array class from all views.
+ (NSMutableArray *)allCustomers
{
if !(customers)
{
customers = [NSMutableArray array];
}
return customers;
}
@end