I need to read some preferences as menu items from plist file, and display them in table view. Is it possible to store some predefined UIButton with IBAction inside plist file? I need to show a table view with meniu like options in home screen. Most of those items are just links to other UIViewControllers but there are several cells that contain UIButtons for opening another screen.
Share
most any type of data can be represented in a plist. I have stored entire apps as a list of objects (navcontrollers, viewcontrollers, views of different types etc.) all within plists. then created all the objects at runtime based upon the plist data (no nibs used).