Please do not post the same thing multiple times. The board software automatically flags certain posts as needing moderator attention. This happens the most often for new users. I'm pretty sure this is made clear at the time you attempt to post. Posting the same thing over and over again just makes that many more posts the moderators have to weed through later. This makes us sad. Don't make us sad. If your post/thread doesn't appear, just wait a while. Don't post it again. If it hasn't shown up by the next day, then you can try again. I normally go through posts in the mornings, and try to check a few times throughout the day, but I'm not here 24/7. There will typically be a significant delay before posts are approved. Just be patient.
You can try using the Affiliate Search API. Returns most of the useful meta data in JSON format. http://www.apple.com/itunes/affiliates/resources/documentation/itunes-store-web-service-search-api.html
Thanks, that works perfectly.
I'll have to do more testing but it appears as though even deleting the cells do not have a negative impact (which is a good thing for what the app is designed for).
I have found that while working with the navigation bar, its easier to just do thing programmatically instead of through IB.
Going off of what Brian said, you can show/hide the nav bar as needed. One thing to keep in mind is the Title of the "back…
To avoid creating a new thread, I just thought I would add to this one I created that is related to editing.
I'm looking for someone to point me in the direction of documentation to read about what I'm trying to accomplish (as I'm not exactly what…
Speed;383565 said:Here is some code that I use for a toolbar with right and left buttons:
UIToolbar *toolbar = [[UIToolbar alloc] init];
[toolbar setFrame:CGRectMake(0, 0, 320, 44)];
[toolbar setTintColor:[UIColor grayColor]];
UIBa…
Could someone enlighten me on how to programmatically set the properties (mainly color of a tool bar and the location/color of the buttons on it).
I would like to do more things programmatically but have never fully understood this concept and I e…
I know the answer to this question, but just to clarify it before I go about reworking my code:
What would be the result of using stringByAppendingFormat instead of stringByAppendingPathComponent?
I'm assuming exactly what I'm seeing here?
Thank…
So I think I found the issue, but will still have to think of how to go about fixing it.
Apparently, it code I have written to read or create the plist to doesn't actually place it inside the documents folder. It creates a plist outside of documen…
Here is code from my viewDidLoad:
NSString *allFilePath = [self dataFilePath];
if ([[NSFileManager defaultManager] fileExistsAtPath:allFilePath]) {
NSMutableArray *array = [[NSMutableArray alloc] initWithContentsOfFile:allFilePath];…
I would suggest creating a separate method that takes a boolean to see whether the image is displayed or not, and then toggles it.
Then just call that method in your IBAction instead.
I'm still new at the language and don't want to embarrass mys…
I'm not very experienced, so take my advice with a grain or two of salt.
I think the issue may have something to do with the lack of imageKey on some of the dictionaries. If its returning "null" ofType "png", is it assigning the first available pn…
I'm in the same boat as you man. I'd say the most important things to get started is 1) understanding of OOP so that Apples documentation makes sense, 2) HOW to use apple documentation as a reference, instead of just reading it straight through, 3) …
This is where I currently load the table from the plist.
- (void)viewWillAppear:(BOOL)animated
{
NSString *aFilePath = [self dataFilePath];
NSMutableArray *array = [[NSMutableArray alloc] initWithContentsOfFile:aFilePath];
self.tableAr…
Duncan,
I am trying to adapt this example with dictionaries and arrays, and have managed to get quite lost.
View 1 contains an array of dictionaries, View 2 is a data entry form.
When savePressed on view 2 is executed, I gather the values into…
Got it working!
The only difference I saw when I compared them was the dictionary names. Item 0, Item 1, Item 2 vs when I did it manually I put Person 1, Person 2, Person 3. I suppose that will do it though, lesson learned.
Its always a great fee…
Thanks for the advice.
I had constructed the plist manually, so I do not have any code that writes the plist. I assumed creating it in xCode, and having it in the "Supporting Files" was sufficient.
I will begin to work on your method. Thanks aga…