当我尝试格式化字符串类型
时,我正在为Objective-C做简单的代码NSMutableString *text;
text = [NSString stringWithFormat:@" Hello MR. %@",[txtName text]];
lblResponse.text = text;
然后它说不兼容的指针类型分配,所以任何解决方案来解决这个问题?请帮忙
答案 0 :(得分:0)
lblResponse.text = [NSString stringWithString:YourMutableString];
将完成这项工作。
答案 1 :(得分:0)
因为您要将NSString
的属性分配给NSMutableString
NSString *text = [NSString stringWithFormat:@" Hello MR. %@",[txtName text]];
lblResponse.text = text;
或者不是这样,你可以简单地将字符串分配给这样的文本
lblResponse.text = [NSString stringWithFormat:@" Hello MR. %@",[txtName text]];