can i find out the list of All Application which is installed in my ios device. With the help of ios sdk. or any application or code which will give me the result for that.
please give me suggestion.
thanks in advance.
can i find out the list of All Application which is installed in my ios device. With the help of ios sdk. or any application or code which will give me the result for that.
please give me suggestion.
thanks in advance.
You can get all the application list and name that user had installed using this code...
static NSString *const cacheFileName = @"com.apple.mobile.installation.plist";
NSString *relativeCachePath = [[@"Library" stringByAppendingPathComponent: @"Caches"] stringByAppendingPathComponent: cacheFileName];
NSString *path = [[NSHomeDirectory() stringByAppendingPathComponent: @"../.."] stringByAppendingPathComponent: relativeCachePath];
cacheDict = [NSDictionary dictionaryWithContentsOfFile: path];
user = [cacheDict objectForKey: @"User"];
i tested in ios6 it's working fine