-1

I need to put a UITableViewCell containing 3 UILabel and 1 UIImage into a UITableView.

What would be the best data container for this?

  1. NSArrays in NSMutableArray?
  2. NSDictionarys in NSMutableArray?

The 3 UILabel are not modifiable but the UIImage may be modified.

Any recommendations?

Ahmed Z.
  • 2,329
  • 23
  • 52
Poliquin
  • 2,937
  • 4
  • 28
  • 32

1 Answers1

0

Thanks guys for the comments. I managed to figure it out.

In order to solve the above, I had a NSMutableArray that houses multiple NSMutableDictionaries.

Problem solved.

Poliquin
  • 2,937
  • 4
  • 28
  • 32