-3

I have an NSMutableArray of data that i would like to present in a view,

how might someone go about doing this?

i have seen that the best way to present Array data is by displaying it onto a table, but cannot find anything that can help someone using Xcode 3.2.6, as it lacks some of the functionality that later versions have.

Any ideas?

bneely
  • 9,083
  • 4
  • 38
  • 46
Jack Allen
  • 549
  • 2
  • 5
  • 19
  • i am almost completely new to this language, so would appreciate something basic, although something more difficult would still be very useful! – Jack Allen Sep 25 '13 at 21:26
  • Side note - why are you using an ancient version of Xcode? You won't be able to use it to submit any apps to Apple. It also means you are learning lots of out-of-date features and functionality and you are missing out on all of the new features of iOS and Objective-C. – rmaddy Sep 25 '13 at 21:42
  • Why would you want to use a software that was presented 4 years ago? – Segev Sep 25 '13 at 22:04
  • If you are completely new to Cocoa Touch I recommend working through some tutorials as it will help enormously: http://www.raywenderlich.com – Robotic Cat Sep 25 '13 at 22:54
  • @rmaddy i am using this as i am a student and cannot afford to pay for a newer laptop, and it makes sense to get someone kind of idea of what im doing before spending all of that money, does it not? – Jack Allen Sep 26 '13 at 11:18

1 Answers1

3

Yes, the best way is to use a UITableView.

Have a look to this tutorial

Jordan Montel
  • 8,227
  • 2
  • 35
  • 40
  • And then pop this in to convert your mutable array to an NSArray (NSMutableArrays cannot be data sources): `- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender` – eulr Sep 25 '13 at 21:36