gpt4 book ai didi

ios - 如何在每个显示文本的触摸按钮后打印空格

转载 作者:行者123 更新时间:2023-11-29 13:17:07 25 4
gpt4 key购买 nike

这是我使用 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

最佳答案

试试这个:

// NSString *newText = [currentText stringByAppendingString:trick];
NSString *newText = [NSString stringWithFormat: @"%@ %@", currentText, trick];

关于ios - 如何在每个显示文本的触摸按钮后打印空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15454732/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com