dvs
dvs

Reputation: 12422

Max number of UITabBar items allowed in iPhone SDK?

I currently have 8 UITabBar items, all of which are editable in the More view. My question is, what is the absolute maximum number of tab bar items allowed?

I understand 5 is the most that can be visible at one time; I'm looking for the most you can have period.

Upvotes: 2

Views: 3381

Answers (1)

Philippe Leybaert
Philippe Leybaert

Reputation: 171774

I don't think there is a hard limit, as long as you don't run out of memory. I've used more than 20 in the past without any problems (although having many controllers means you should be really careful when managing memory, i.e. handling didReceiveMemoryWarning correctly)

Upvotes: 2

Related Questions