Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何连接来自 tableview 的选定行数据并将其存储在 nsstring 中?
我选择了带有复选标记的行,并将它们单独打印在日志中。但是在选择 2 或 3 行之后,如何连接这些字符串?
尝试这个,
在.h
NSString *yourString;
在 .m 中初始化您的字符串 viewDidLoad ,
yourString = @"";
在 didSelectRowAtIndexPath方法
didSelectRowAtIndexPath
yourString = [yourString stringByAppendingFormat:@"%@",newString];