What is the difference between below two methods, both are meant for mapping through Interface builder
- (void) showNYTimes:(id)sender
and
- (IBAction) showNYTimes:(id)sender
Both are working perfectly for my requirement, I am able to map both ways on IB. But which one to opt, is IBAction meant for only readability of code?
Thanks.