Hello,
Im trying to call performClick:
from awakeFromNib
and its not working. I think its because it needs a sender and awakeFromNib
has no sender. I have tried using nil
,self
and sender
as the sender of performClick:
but none seem to work. My code is
- (void)awakeFromNib {
[myButton performClick:sender];
}
Can anyone think of a work around for this? Thanks for any help