By using of Xcode 5 and auto-reference counting is enabled.
In a Non NavigationController based application i have take a UIButton and the IBAction and IBOutlet are properly defined and connected. But before the IBAction for TouchUpInside event called by Button taped the App gives “[SecondPage performSelector:withObject:withObject:]: message sent to deallocated instance 0x6cb7970”.
SecondPage is view-controller on which this UIButton exists.
Basically I want to open a new view-controller’s view on this UIButton tapped and i will do this by Custom Segue
Hmm strange it sounds like ARC is autoreleasing your secondView controller before your selector is being called.
Try defining your secondView as a property of the first (if you’re adding it as a subview) with a property type of strong.
That’s all I can recommend without seeing your code.