我用一個帶有兩個字符串數組的字典的簡單plist啓動了此項目。我現在想添加更多的信息,並希望使用此的plist結構:將plist讀入TableView
Root - Dictionary - (2 items)
Standard - Array - (3 items)
Item 0 - Dictionary - (4 items)
Color - String - Red
Rvalue - String - 255
Gvalue - String - 0
Bvalue - String - 0
對不起關於輸入法的plist中,但該網站不會讓我張貼圖片
我知道的RGB值可能是數字而不是字符串,但我有他們是字符串的原因。
這是我用來讀取簡單的plist代碼:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSUInteger section = [indexPath section];
NSUInteger row = [indexPath row];
NSString *key = [keys objectAtIndex:section];
NSArray *colorSection = [colors objectForKey:key];
static NSString *SectionsTableIdentifier = @"SectionsTableIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:SectionsTableIdentifier];
if(cell == nil){
cell=[[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier: SectionsTableIdentifier] autorelease];
}
cell.textLabel.text = [colorSection objectAtIndex:row];
[cell setAccessoryType:UITableViewCellAccessoryDetailDisclosureButton]; //add disclosure button to rows
return cell;
}
我的問題是什麼是特定的代碼來獲取顏色字典的內容來獲得色調爲cell.textLabel.text並讀取RGB值以添加字幕。我一直在研究這個問題已經有好幾天了,並且已經閱讀了參考文獻和大量的例子,不幸的是無法解決問題。您的幫助將不勝感激。