0
我有一個數組持有其他數組,但不能得到這個工作!即時消息試圖從子字符串拉字符串值我可以訪問第一個子數組沒有問題,但後來當我嘗試將標籤更改爲第二個數組中的對象我的程序崩潰anyidea我應該如何處理這個?訪問多維數組中的對象,Obj-c
int count = 0; // variable to access the required sub array
NSArray* myArray; // array holding other arrays
UILabel* mylabel; // label to display my string values from the array s
-(void) setLabel
{
NSArray* subArray = [myArray objectAtIndex: count];
[myLabel setText:[subArray objectAtIndex:1]]; // this works fine
}
-(void) changeLabelToNextArray
{
count ++
[self setLabel]; //program crashes here when try to load label from next array
}
嘿feanor,我有一個數組與5個子數組每個子數組有5個字符串,即時嘗試顯示 – Rhuntr
因此,你總共有25個字符串,你想你的方法一次更改UILabel顯示的文本? – Feanor
有點,我會有5標籤,並希望顯示從第一個子數組的5個字符串,然後更改5標籤顯示從第二個子數組的5個字符串 – Rhuntr