Я объявил это в .h
IBOutlet UILabel *display;
, а в .m я делаю следующее, но это не работает, продолжаю говорить, что displat.text является нулевымОзадаченный, помогите!Да, я нуб.
NSLog(@"operation button pressed %@ is of class %@",[[sender titleLabel] text],[[[sender titleLabel] text] class] );
NSString *operation = [[sender titleLabel] text];
[display setText:operation];
NSLog(@"display text is of class %@ and equals %@",[display.text class], [display text]);
Я тоже пробовал вот так:
NSLog(@"digit button pressed %@ is of class %@",[sender currentTitle],[[sender currentTitle] class] );
display.text = (NSString *)[[sender titleLabel] text];
NSLog(@"display text is of class %@ and equals %@",[display.text class], [display text]);