0

I have created ABViewController (inherited from UIViewController). It has default methods when created (initWithNibName , viewDidLoad , didReceiveMemoryWarning). So, I wanna set more default method in my custom class such as "setInterface,setData".

NANNAV
  • 4,875
  • 4
  • 32
  • 50

1 Answers1

0

You can use one trick:

Write required method definition and call it inside viewDidLoad.

It's just a trick.

Sanjay Joshi
  • 2,036
  • 6
  • 33
  • 48