我想將按鈕標記的值設置爲1或0,這些值來自表格行中的數據庫。 當值爲1時我希望那個按鈕圖像是star.png,如果值是0,我希望那個按鈕圖像是dot.png。如何將整數值設置爲表格行中來自數據庫的按鈕的標記
0
A
回答
0
什麼是你的問題spikydude。
在我看來,你想在tableView的單元格上添加一個按鈕,該圖像將是星形或點形。而且你可以很容易地從你的數據庫中獲取。只需在您的cellForRowAtIndexPath
方法中添加一個if
條件,你應該得到你想要的東西/
編輯:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
if(value==0)
{
//create your button with proper frame
yourButton.tag = value;
[yourButton setImage:[UIImage iamgeNamed:@"dot.png"];
}
else if(value==1)
{
//create your button with proper frame
yourButton.tag = value;
[yourButton setImage:[UIImage iamgeNamed:@"star.png"];
}
else
{
}
return cell;
}
或者,如果你想如何從數據庫中檢索值,指定。
0
這是一種如何做到這一點,如果你有兩個以上的圖片:
NSArray * picturesName = [NSArray arrayWithObjects:@"picture0.png",@"picture1.png", ... , nil];
UIImage * img;
if (value < [picturesName count]) {
img = [UIImage imageNamed:[picturesName objectAtIndex:value]];
} else {
img = [UIImage imageNamed:@"default.png"]
}
然後您可以將按鈕的setImage
相關問題
- 1. 將原始數據庫中的表格設置爲單選按鈕
- 2. 無法設置來自數據庫的按鈕的文本
- 3. ExTJS中來自數據庫的標籤設置值
- 4. 是否可以將按鈕ID設置爲數據庫中的數值
- 5. 如何讓按鈕自動將數據庫中的值輸入到表單中?
- 6. 將數據庫記錄設置爲jtextfield
- 7. 根據數據庫中的表設置單選按鈕
- 8. 如何將數據庫中的值設置爲文本字段
- 9. 如何在按鈕的標記中設置字符串值
- 10. 如何將數值設置爲smali中的整數類
- 11. 來自數據庫表的Django設置值
- 12. 如何根據從數據庫中提取的值設置單選按鈕
- 13. 如何將數據表設置爲WPF數據網格C#?
- 14. 來自數據庫的單選按鈕的迴歸值
- 15. 如何設置谷歌地圖標記與數據庫值
- 16. 如何通過從數據庫獲取標籤和按鈕名稱來自動生成表單中的按鈕?
- 17. 如何根據標題的按鈕將autoSize設置爲UIbutton?
- 18. 如何使用JQuery將來自數據庫的數據設置爲KendoDropDownList的選定值?
- 19. 來自ODBC數據庫的表格TextBox中的Crazy光標
- 20. 如何將來自ArrayList的動態數據設置爲InfoWindow
- 21. Android:如何將來自Volley的json數據設置爲ListView?
- 22. 如何將Google標記設置爲按鈕?
- 23. 將標記值設置爲圖像按鈕
- 24. 如何在jsp中動態設置複選框的值(值來自數據庫)
- 25. 設置來自數據庫的索引值數組
- 26. 將背景圖像設置爲asp.net中的按鈕標記
- 27. 如何將來自數據庫的數據更改爲DataGridView
- 28. 如何使用按鈕將數值從ArrayList設置爲JTextField?
- 29. 從SPRING FORM標記中的數據庫中檢索數據後設置RadioButton值
- 30. 將TextView設置爲整數的值
哎,但是我應該如何使用按鈕標籤涉及它 – Harshal 2011-03-23 06:41:43
我有編輯代碼 – 2011-03-29 05:22:04