A PLIST file, also known as a "Property List" file, uses the XML format to store objects such as arrays, dictionaries, and strings.
0
votes
1answer
26 views
Downloading Remote PLIST iOS - Returning Null
Struggling with this one. Looking to download a read only plist for use inside my app...
However struggling to read the contents in a Dictionary... Code below, any pointers would be great..
...
-1
votes
0answers
4 views
reading from and writing to plist
#import "AnswerViewController.h"
#import <QuartzCore/QuartzCore.h>
#import <AVFoundation/AVAudioPlayer.h>
@interface AnswerViewController ()
@end
@implementation AnswerViewController
...
-4
votes
1answer
22 views
Update NSDictonary in plist-File
I have the following structure in my plist file:
<array>
<dict>
<key>XX</key>
<string>value XX</key>
<key>YY</key>
<string>value ...
0
votes
4answers
30 views
Not able to retrieve info.plist data by -pathForResource method?
In my application I am not able to get the plist using the below code. I am using Xcode 4.5
and here is my code for retrieving plist,
NSBundle *thisBundle = [NSBundle mainBundle];
...
-4
votes
1answer
17 views
Which one is better to use in xcode? plist or json? [closed]
I am trying to get this ans searching but did not get the best answer so far. Can you guys help on it?
Which one is better to use in Xcode?
Plist
JSON
0
votes
1answer
17 views
xlsx to plist in Spanish - accented characters being lost
I have been using "Plist Converter" to get my data from csv files (excel spreadsheets saved as csv files) into plists up to now and have never had any issues with it.
However, I am currently working ...
-2
votes
0answers
15 views
How to parse code in .plist file like below in windows phone [closed]
what i I want is
get two string[],stringA[]={A1},stringB[]={B1,B2}
I program in windows phone 8 ,use my college's IOS .plist to work,
I find it is diffcult for me to use my LINQ TO XML ability to ...
0
votes
1answer
22 views
Weird plist behaviour returning null on first value and 13 results when it should be 12
I have this strange behaviour when using a plist and trying to return the data. To give you an overview the plist has 12 entries in each object so I expect 12 but instead I get 13 with the first ...
0
votes
2answers
36 views
iOS: What are the possible options to Reset an iOS apps Data without requiring a reinstall?
This is a iOS 101 question and I feel like an ass for not knowing the answer :-)
The question is - how do I reset an iOS app to the state it was when first installed?
The app stores content in ...
1
vote
2answers
37 views
Ensuring the symbol th in iOS appears correctly
I need to have 19th century in my UILabel. But it should appear as 19th century where the th symbol is a superscript. I am entering the label using plist. How do I ensure that it appears correctly in ...
0
votes
0answers
15 views
navigator.notification.confirm does not work on iphone for Phonegap
I created an Android app with phonegap that calls navigator.notification.confirm. This works fine for Android. However, when I bring it over to the Mac and build it in XCode I don't get a pop ...
0
votes
1answer
12 views
iOS: Seeding an app with items from a plist
I'm trying to populate or seed my app with certain items, using the next method, which is called in the didFinishLaunchingWithOptions method:
-(void)seedItems {
NSUserDefaults *ud = ...
1
vote
1answer
35 views
Not able to retrieve Plist value to NSDictionary
I use following code to display the plist into NSDictionary/NSMutableDictionary ,but when i print that variable it returns null value? please help me?
NSArray *paths = ...
0
votes
3answers
74 views
Save and Get image from plist
I am developing one app in that getting images from array and display vertically in ScrollView.
when user double tapped on particular image i want that exact image store into plist according to tag ...
-3
votes
2answers
27 views
Best way to create pList in IOS [closed]
Which is the better way for creating pList;
would that be better if I create it programatically or through clicking resource and adding a pList file to our program. Please explain?
0
votes
1answer
35 views
Extracting unknown data from plist
I'm writing an iOS loader that loads data from a plist intending to send vertex data, etc. to the GPU via OpenGL. I can easily extract objects of standard types, like strings, integers, etc.
Where I ...
-1
votes
0answers
34 views
Parse a Plist to a UITableView
I'm beginning to write a newsstand app, but I'm not sure how to download the plist on launch and parse it into a UITableView using Xcode. I have done this before with XML using GDataXML libraries, ...
0
votes
2answers
46 views
Read from file.Plist Returns Null
Program that Creates multiple Plist's Paths for Different information.
But only one path is not working.
(i think "writeToFile" is the problem)
code:
-(NSString *) createPath:(NSString ...
-2
votes
1answer
33 views
Delete from Plist is not working?
i have a plist and when a user write notes i save into that plist along with their id,each time when user opens that it will check whether this user id got any notes in plist and display it in ...
0
votes
1answer
29 views
Appending some data to a plist
I'm creating an app that allows you to log board game plays. I'm storing my logs in a plist and I'm trying to figure out how to append the plist. I think I understand the logic but I'm having trouble ...
-2
votes
1answer
53 views
How to write easily datas in an empty plist file [closed]
I would like to write/delete datas.plist programmatically.
I have a view that contains several buttons that are differentiated by their tags.
I want each time a button is pressed :
write a new ...
-2
votes
1answer
47 views
Retrive value from plist file based on date [closed]
I have been searching how to do this for a while now with no luck..
How can i retrieve the value stored in a plist file according to today's date which is checked against the Key in the plist file.
...
0
votes
1answer
35 views
(iOS) Reading a plist from Documents folder - I get correct path but can't load dictionary
I know there are tons of threads already on this issue, but I cannot seem to find one that solves my problem. I have a plist with a dictionary as the root, containing three arrays. My code to write ...
0
votes
0answers
12 views
working with plist and object NSnumber property turns up as (null), why?
i have a pList on my app that saves an array of dictionaries.
every dictionary represents an object of class (class password) that has 5 properties:
NSNumber*passwordId;
NSString*passwordUname;
...
-1
votes
0answers
34 views
How to correct “Is missing from working copy” error in xcode, when changing icon/launch screen images
I've updated an existing app's icon and launch screen images, this was done by dragging these new images into the target panel. However the old icon and launch images were left in the project folder.
...
0
votes
3answers
129 views
Saving data to an existing plist
I am working on a project that has a simple tableview with detail view.
Data source is a plist. I am trying to allow user input to be saved into the plist and shown in tableview. i have created a ...
1
vote
1answer
18 views
Should your plist ever contain <string></string>?
I see 3 occurrences of <string></string> in my plist file. Is this an issue? I started looking into the plist because I'm getting this error:
Icon specified in info.plist not found ...
1
vote
1answer
18 views
Get error when try to write value to the plist
I'm trying to write value to plist, but have the error
Code:
NSString *path = [[NSBundle mainBundle] pathForResource:@"Properties" ofType:@"plist"];
NSDictionary *dict = [[NSDictionary alloc] ...
-1
votes
0answers
47 views
change Key value for pList in xCode [closed]
I am developing an iPad application using xCode version 6.
I try to create a plist in xcode. every time I add a file for plist with Key and values the key is set to root by default.
Is there any ...
0
votes
0answers
21 views
Integer read from plist always returns 0
I'm trying to get a value of integer number from plist.
NSString *path = [[NSBundle mainBundle] pathForResource:@"Prop" ofType:@"plist"];
NSDictionary *dict = [[NSDictionary alloc] ...
-1
votes
2answers
32 views
Using Zwoptex - Getting a Plist
I want to create a plist from a SpriteSheet using Zwoptex, I've got the spriteSheet(1 Png file with all the sprites I need) and I would like the Plist to be showed as If there were many frames. (I ...
1
vote
2answers
50 views
Is it possible to create a device specific .plist file -iOS
I am storing some data in a plist file.. and I have realised that it can be shared. Is there a way where I can make .plist files device specific? Maybe UDID or something? Any ideas will be much ...
0
votes
1answer
19 views
hide registration code from user on iOS
Only a short question here, I would like to know the best place to put my registration code for the user that I get back from the server. I am encrypting it as seen here.
//encrypting
NSString* ...
1
vote
1answer
23 views
Windows 8 Apps - plist equivalent to hold dictionaries
In iOS plist files are useful resources since you can hold an array or a dictionary inside it and read from the plist file using a code like this:
NSMutableDictionary *myDic = [[NSMutableDictionary ...
0
votes
0answers
27 views
jenkins browser not showing up
I have this wierd problem. My jenkins setup was working before. My plist file is the following
<plist version="1.0">
<dict>
<key>StandardOutPath</key>
...
0
votes
1answer
26 views
Saving, Document Extensions, and Preferences (Info.plist)
I have a simple document-based Cocoa app call "RaiseMan". When I go to save a file, this message appears in the console:
-[NSDocumentController fileExtensionsFromType:] is deprecated, and does not ...
0
votes
1answer
44 views
Array of plist update data
I have this two arrays init with two different plist files, plist files are inside document folder not in the bundle so are editable.
progress = [[NSMutableArray alloc] initWithContentsOfFile:[self ...
0
votes
3answers
58 views
How to add a key and string in dictionary?
My plist file:
NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
NSString *path = [[documentPaths lastObject] ...
0
votes
2answers
27 views
Comparing creation/modification date of NSData objects
At first I have a plist file in app bundle. At some point the file can get updated (downloaded into Documents Folder). Whats the best way to know which file is newer? The mainbundle plist could get ...
0
votes
2answers
64 views
Best practice to process big plists?
I'm using a plist file which contains all app my data. The file is quite big and currently I'm loading all the stuff into Arrays and Dictionaries at first launch and save them into UserDefaults so ...
1
vote
1answer
24 views
Does anyone know of a walkthrough or tutorial on how to set the plist for iOS 6?
I need to set the plist to allow CLLocation to update the current location in the background.
0
votes
1answer
64 views
iOS over the air install with manifest in install page
I have an install page (for an iOS app over the air), with an itms link to the plist file.
(long story but) the plist file 'has to be' in the install page⦠I tried a data url:
<a ...
0
votes
3answers
40 views
Create blank plist programmatically (in DocumentsDirectory)
So normally I save data to a plist (just data that I don't really care if a JailBroken phone hacked, like users preferences and stuff) except when the user first launches the app I create the plist ...
1
vote
1answer
39 views
need to access string from property list
I need to be able to write and save data from a plist. So far I have written out the plist and now I need to know how to create an array of a specific string in the plist. I need to access the checked ...
1
vote
0answers
29 views
iOS .plist download time-out parameter?
Is there an iOS .plist parameter that can be set to specify/increase the app download timeout? We have low bandwidth enterprise customers and they are getting time-outs when trying to download iOS ...
0
votes
2answers
33 views
How to edit a plist file by key type
I want to add into my plist file present in "prefPlist" variable some key with its relative type.
The example content must be:
<dict>
<key>App Version</key>
...
0
votes
3answers
56 views
NSMutableArray Add and Save Objects
New to iOS and am stuck on one issue in regards to adding objects in NSMutable Array and displaying the array on another view within the App. The data displays fine on other view in TableView, but ...
0
votes
2answers
18 views
How do I control the order for iteration of a dictionary created from plist items?
How do I control the order for iteration of a dictionary, or items from a plist?
I have a plist with 65 items. Each item is a dictionary with three items, a number (index), and two strings that are ...
0
votes
2answers
51 views
Get a string from an online Plist file?
I've never done any online things in an app before and have been searching google for the answer for the past 2 hours and nothing has worked.
Is there a very simple way to get a value (preferably a ...
0
votes
0answers
49 views
how to use .Plist file in android for streaming media player
i am making an streaming mediaplayer android app in which i want to use .Plist file for playing songs.
why am using .Plist is b'coz ill be updating .Plist frequently which will be uploading on ...







