I have a plist with info. It is setup like this:
Under each array, there are more items. How can I implement a search bar that searches through all of the Titles? I have used the tutorial in the Beginning iPhone Development book, but when I want to use my own plist is crashes (due the way my plist is).
Secondly, I want to hold some image paths in my plist and get them to display on my detailview. How can I do that? - I've managed to get this working using this tutorial http://www.iphonesdkarticles.com/2009/03/drill-down-table-view-with-detail-view.html
Thanks in advanced!
Code:
> Root (dictionary)
> Rows (array)
> Item 1 (dictionary)
> Children (array)
> Item 1 (dictionary)
> Title (string)
> Time (string)
> etc.
> Item 2 (dictionary)
> Title (string)
> Time (string)
> etc.
> Item 2 (dictionary)
> Children (array)
> Item 1 (dictionary)
> Title (string)
> Time (string)
> etc.
> Item 2 (dictionary)
> Title (string)
Under each array, there are more items. How can I implement a search bar that searches through all of the Titles? I have used the tutorial in the Beginning iPhone Development book, but when I want to use my own plist is crashes (due the way my plist is).
Thanks in advanced!