Objective-C Display Text 実行状況のLogを画面表示する

実行状況の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


▫️参考ページ


  

目 次