I want to add two delegates to my iphone app. Was just thinking if i could do this or not.
I have one tab bar control where in one tab i am showing one web view now in second tab i want to show my own coding which i have separately implemented. And I want to bring that code to this code. Can i do this by adding a new delegate in Xcode or i have to embed it in first delegate itself?
Thank you.
If I understand you right, you’re talking about a second application delegate, in which case the answer is no. You should not have more than one app delegate per application. What you should do instead is take your own code and integrate it into the existing tab bar controller by adding another tab which loads your view controllers, etc.