Can i have a single NSMutableArray in my multiple views application?

◇◆丶佛笑我妖孽 提交于 2019-11-29 17:56:17

If you are having multiple views in your application, and in that case you want to have a variable accessible to every view, you should always create a Model/Data(singleton) class and define the variable in it. Something like this :

//DataClass.h      

@interface DataClass : NSObject {    

NSMutableArray *arrGlobal;     

}    
@property(nonatomic,retain)NSMutableArray *arrGlobal;   
+(DataClass*)getInstance;    
@end  



//DataClass.m    
@implementation DataClass    
@synthesize arrGlobal;    
static DataClass *instance =nil;    
+(DataClass *)getInstance    
{    
    @synchronized(self)    
    {    
        if(instance==nil)    
        {    

            instance= [DataClass new];    
        }    
    }    
    return instance;    
}    

Now in your view controller you need to call this method as :

DataClass *obj=[DataClass getInstance];  
obj.arrGlobal = arrLocal; 

This variable will be accessible to every view controller. You just have to create an instance of Data class.

For your type of issue I would use a singleton.

http://en.wikipedia.org/wiki/Singleton_pattern

The appdelegate is a singleton too but you can reduce a bit the number of coded lines if you use your own singleton.

The AppDelegate approach should work, and you should probably figure out why it's not working, even if you go with a singleton.

The statement to get your appDelegate pointer appears to be correct, so I'm guessing that the pointer to the array is either not getting set (and retained) in your myappDelegate class, or you did not create the AppDelegate instance correctly in the first place.

Panta

On the Singleton approach add this

instance.arrGlobal = [[NSMutableArray alloc] init];

this way:

@synchronized(self)    
{    
    if(instance==nil)    
    {    

        instance= [DataClass new];
        instance.arrGlobal = [[NSMutableArray alloc] init];
    }    
}    
return instance;

This way you can initilize the array and use it properly.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!