0

I have 6 tabbar items in my iphone app. 4 tabbar items visible directly and other 2 items in More tabitem. There user can change the tabbar items by clicking Edit button. Is it possible to detect the Edit button functionality? If it is possible means how can i detect that? Please help me. Thanks in advance.

Yuvaraj.M
  • 9,741
  • 16
  • 71
  • 100

1 Answers1

1

Take a look at UITabBarControllerDelegate:

It's got methods such as tabBarController:willBeginCustomizingViewControllers: which I think does what you want.

mattjgalloway
  • 34,792
  • 12
  • 100
  • 110
  • thanks a lot for your help. I will accept your answer after 8 mins. Thanks. – Yuvaraj.M Dec 24 '11 at 13:09
  • No problem. In general with this sort of thing, think delegate. More often than not there's a delegate method for situations where you want to be told about interaction with a certain view controller. – mattjgalloway Dec 24 '11 at 13:11