Oh hai there!
I have 2 questions here

after changing from iPhone to iPad I have been running into a HUGE amount of fails, definitly because of the UISplitViewController..
ok, so what my problem here is.
I have a UISPlitViewController app.
Which has a rootview (tableview) on the left, and a details view on the right (quite obvious), it loads the Detailview on the right, according to the XMLparsers, etc etc.
But on Portrait mode, u can only tap to the next item, by pushing the button on top left first, then see the tableview, and then tap to the next. I think this gets boring for users, when they want to use it in portrait mode, or even, when their in Landscape mode, so what I tried to implement is, create a Bar at the bottom.
Add a IBAction to a buttonItem there (2x buttons to be exact), and add the code. to switch to the next row at Indexpath when pressed Next, or go 1 back when u pressed the Previous..
But, damn, I cant find't anything about it, im sure someone else did it. But, I think im just looking for the wrong things on google, so I hope someone could push me in the right direction here.
Second question is.
When I boot up my app, and let's say its in portrait mode.
the detail is empty. because nothing is selected yet.
So what I tried to do is,
Code:
NSIndexPath *ip = [NSIndexPath indexPathForRow: 0 inSection:0];
[rootViewController.tableView scrollToRowAtIndexPath:ip atScrollPosition:UITableViewScrollPositionTop animated:YES];
And I also tried to do, is selectRowAtInde, and then use 0.
But it just highlighted it in the UITable, but didn't really select it, (which triggers a loadDetails function..)
So, damn, im stuck, and I hope someone can push me in the right direction, or more people who want to accomplish the same, could put their frustrations here!
Greetings, jNoxx
PS: Thanks for any feedback..