现在我正在使用简单的 iphone 应用程序,我已经存储了一些价值,所以我NSMutableArray
想 "{54.399, 196}","{-268.246, 273}".
首先获得 54.399 indexpath
,如何获得这个,请帮助我
提前致谢
现在我正在使用简单的 iphone 应用程序,我已经存储了一些价值,所以我NSMutableArray
想 "{54.399, 196}","{-268.246, 273}".
首先获得 54.399 indexpath
,如何获得这个,请帮助我
提前致谢
看起来你有一个数组数组,所以它是:
[[myArray objectAtIndex:0] objectAtIndex:0];
或使用下标:
myArray[0][0];
编辑:
好的,你有一个NSStrings
. 做你想做的事(得到 53.399)执行以下操作:
NSString *myString = [myArray objectAtIndex:0];
NSArray *stringComponents = [myString componentsSeparatedByString:@","];
NSString *myFinalString = [stringComponents objectAtIndex:0];
带下标:
NSString *myFinalString = [[myArray[0] componentsSeparatedByString:@","][0];
您可以使用
[[arrayObj objectAtIndex:0] objectAtIndex:0];