Advertise here




Advertise here

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Google Sign In with OpenID
Please do not post the same thing multiple times. The board software automatically flags certain posts as needing moderator attention. This happens the most often for new users. I'm pretty sure this is made clear at the time you attempt to post. Posting the same thing over and over again just makes that many more posts the moderators have to weed through later. This makes us sad. Don't make us sad. If your post/thread doesn't appear, just wait a while. Don't post it again. If it hasn't shown up by the next day, then you can try again. I normally go through posts in the mornings, and try to check a few times throughout the day, but I'm not here 24/7. There will typically be a significant delay before posts are approved. Just be patient.

Adding NSMutableArray in iPhone

cutiepiecutiepie Posts: 8New Users
edited October 2012 in iPhone SDK Development
I have a NSMutableArray with some objects.This is NSMutableArray
(
{
City = "Alabaster ";
Line1 = "6735 Conroy Road";
Line2 = "675 Conroy Road";
Name = John;
State = Alabama;
},
{
City = "Alabaster ";
Line1 = "6735 Conroy Road";
Line2 = "675 Conroy Road";
Name = Williams;
State = Alabama;
},
{
City = "Alabaster ";
Line1 = "6735 Conroy Road";
Line2 = "675 Conroy Road";
Name = "";
State = Alabama;
}
-------------
-------------
)
Now I want to load these 3 objects ..And when I click on one object it should redirect me to the details of that particular object...How can I implement this concept. UITableView ? ScrollView? or How to implement?
Tagged:

Replies

  • mashercakesmashercakes Posts: 748Registered Users
    UITableView. Duncan C gave you a good explanation of how UITableViews interface with your data. It's up to you to read up on the UITableView delegate methods. If you get stuck at any point, post a specific question.
    TalkBoard - a communication aid and visual support app for children and adults with autism, communication difficulties or learning difficulties. Available now for iPad, iPhone and iPod Touch.
Sign In or Register to comment.