I have implemented Opencv
in one of my project. In an opencv
.mm file, I need to access the appdelegate
object for global access of an array but it is giving Linker Error
all the time (When I am trying to import the AppDelegate
Class). So I have created an NSObject
Class, still I can not access the Global Array which is created as the @property
of the NSObject
(I have imported the NSObject
class in the .mm file). Array is giving the NULL
value.
So where do I create the Array
by which I can access the array in my whole project?
I can not use the NSUSerDefaults
and DocumentDirectory
. Because I want to save a lots of images and video links in that array, So I can not use NSUserDefaults
and I don't want to use again the phone memory for the temp file as because I am picking the images from the Photolibrary
, so DocumentDirectory
is discarded, So Is there any way by which I can create the global array and access them from the openCV
files i.e objective CPP
files?
you can make class as UserdataSingleton which overrides NSObject. which you can use all over your application to share data globally (for your case array). this code template may help you:
and implementation file will be some thing like:
================== usage:
......................your code...
later some where in any other view or view controller you can get that global array for example lets say you have YourViewController class:
thanks