Hi there,
I have a table on my iPhone application. It works—it gets data from an array and displays it on the application. I now want to be able to add some navigation functionality to each item of the array (i.e. each item on the table).
How would I do this? My current Objective-C for the array:
- (void)viewDidLoad {
arryClientSide = [[NSArray alloc] initWithObjects:@"CSS", @"HTML", @"JavaScript", @"XML", nil];
arryServerSide = [[NSArray alloc] initWithObjects:@"Apache", @"PHP", @"SQL", nil];
self.title = @"Select a Language";
[super viewDidLoad];
}
Any help is greatly appreciated.