1
A
回答
1
一個簡單的方法是將UIImageView
添加到與單元格寬度相同且高度相同的單元格中(example)。另一種方法是使用圖像作爲每個單元格的背景,並在您將使用的實際圖形中添加此邊框(example)。如果你想在層次上做到這一點,一個好的開始是this example。我希望這有助於!
5
我能想到的最簡單方法是在內容視圖中添加少許的看法:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CellIdentifier] autorelease];
//Just a small view
UIView *lineView=[[UIView alloc] initWithFrame:CGRectMake(X_POS, Y_POS, LINE_WIDTH, CELL_HEIGHT)];
[lineView setBackgroundColor:[UIColor redColor]];
[[cell contentView] addSubview:lineView];
[lineView release];
}
return cell;
}
相關問題
- 1. 設置UITableView部分邊框顏色
- 2. 如何更改UITableView邊框的顏色?
- 3. 邊框顏色
- 4. 邊框顏色
- 5. 行邊框顏色
- 6. LinkLabel邊框顏色
- 7. ListView邊框顏色
- 8. NSView邊框顏色
- 9. Photoshop顏色邊框黑色
- 10. 框架邊框顏色
- 11. QTreeView邊框/框架顏色
- 12. 邊框顏色忽略我的顏色
- 13. JavaScript的邊框顏色/顏色樣式
- 14. VB更改顏色邊框菜單條
- 15. 單擊時設置邊框顏色
- 16. jQuery UI的菜單邊框顏色
- 17. UITableView單元格textLabel顏色
- 18. 紅色文本框邊框顏色
- 19. WPF SystemColors:TextBox邊框的顏色
- 20. JOptionPane邊框的顏色
- 21. 的UIImageView邊框顏色
- 22. ImageView上邊框的顏色
- 23. Android按鈕邊框顏色
- 24. 更改NSWindow邊框顏色
- 25. 邊框顏色不變
- 26. 更改球邊框顏色
- 27. CSS3動畫邊框顏色
- 28. Groupbox邊框顏色變化
- 29. CSS3智能邊框顏色
- 30. Css漸變邊框顏色
許多想法!你目前的做法是什麼?你有什麼問題? – phi 2012-03-03 07:26:51
我嘗試使用CALayer和SetBorderWidth和SetBorderColor,但它設置了整個邊界。我只想要在廣告牌應用照片中顯示的左側。 – 2012-03-03 07:29:06
在tablewview上方添加不透明視圖,您將會看到它。另外,如果單元格之間沒有分隔符,則可以將這種視圖添加到它們中。 – 2012-03-03 07:39:34