実行状況のLogを画面表示する方法です。
#pragma mark - Helpers
-(void)appendTextToOutputDisplay:(NSString *)text
{
NSString *line = [NSString stringWithFormat:@"%@\n%@", self.outputDisplay.text, text];
self.outputDisplay.text = line;
}
#pragma mark - Actions
- (IBAction)startAction:(id)sender
{
[self appendTextToOutputDisplay:@"start action invoked"];
NSLog(@"start action
invoked");
}
- (IBAction)stopAction:(id)sender
{
[self appendTextToOutputDisplay:@"stop action invoked"];
NSLog(@"stop action invoked");
}
GitHub
▫️参考ページ
コメントをお書きください