Objective Cを使用した最初の日であり、ボタンに触れるたびにスペースを印刷しようとしています。どうもありがとう。
#import "ViewController.h"
@interface ViewController()
@end
@implementation ViewController
@synthesize display = _display;
-(IBAction)trickClicked:(UIButton *)sender{
NSString *trick = [sender currentTitle];
UILabel *myDisplay = self.display;
NSString *currentText = myDisplay.text;
NSString *newText = [currentText stringByAppendingString:trick];
myDisplay.text = newText;
}
@end