Subscribe ( )

iPhone Programming Tutorials


 

Forum

You must be logged in to post Login Register

Search 

more UItableview tutorials..

User Post

10:56 pm
August 23, 2008


Nebkiwi

Noob

posts 3

1

hello, 

I know I keep leaving comments asking for this, but I would really like to know how to load a different nib file for each item selected in UItableview, I am a beginner in the iphone sdk and objective c and am just getting the hang of how it works. If we could have a whole tutorial from beginning to end on how to do so, I would be really thankful, am making a bus timetable application as a learning one, so will have a uitableview, which will have bus locations listed, each item will lead off to another nib file. I would also like to know how to make a uitableview with content from a local xml file (in resources folder?), so the data can easily be changed after the app has been compiled possible as another tutorial?. thanks a lot..

4:10 pm
August 25, 2008


hijinks

iCoder

posts 6

2

I don't like doing that via a nib.. much easier to just create a new tableviewcontroller subclass and load that.

for example

BrowseRandomViewController *controller = [[BrowseRandomViewController alloc] initWithStyle:UITableViewStyleGrouped];
[[self navigationController] pushViewController:controller animated:YES];
[controller release];

BrowseRandomViewControlleris the class that i created when I subclassed tableviewcontroller

4:26 am
August 26, 2008


Nebkiwi

Noob

posts 3

3

thankyou, will give it a try when I get back to my macbook..

Search 

About the iCodeBlog forum

Most Users Ever Online:

44


Currently Online:

4 Guests

Forum Stats:

Groups: 2

Forums: 6

Topics: 419

Posts: 893

Membership:

There are 934 Members

There has been 1 Guest

There are 2 Admins

There is 1 Moderator

Top Posters:

bobcubsfan – 54

crazyiez – 30

Uhu – 17

AdeC – 17

Nick – 15

jitesh61 – 12

Administrators: Brandon (88 Posts), Collin (0 Posts)

Moderators: VertigoSol (26 Posts)



©   

  • Posted by on 6 Aug 2008 in Uncategorized
  •   |  
  •   |  
  •   |  
  • Comments Off

Comments are closed.