0
A
回答
1
爲此,你需要添加和導入
#import <QuartzCore/QuartzCore.h>
之後按照以下步驟
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
UIView *section = [[UIView alloc]init];
section.frame = CGRectMake(0, 0, tableview.frame.size.width, height);
UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageWithName:@"imageName"]];
imageView.frame = CGRectMake(0, 0, YOUR_WIDTH, YOUR_HEIGHT); //set your frame
[section addSubview:imageView];
labelSection = [[UILabel alloc]init];
labelSection.textAlignment = NSTextAlignmentLeft;
labelSection.frame = CGRectMake(10, 5, tableview.frame.size.width, 20);
[labelSection setBackgroundColor:[UIColor clearColor]];
[labelSection setFont:[UIFont boldSystemFontOfSize:15]];
NSString *name = @"section title";
labelSection.text = name;
[labelSection setTextColor:[UIColor blackColor]];
[section addSubview:labelSection];
section.layer.borderWidth = 2.0f;
section.layer.cornerRadius = 1.0f;
section.layer.masksToBounds = YES;
section.layer.borderColor=[UIColor lightGrayColor].CGColor;
return section;
}
如果你想設置的行高
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 44; //It default size.If you want to change to other size you can change.
//OR
// return 90; //Set to your needed size
}
+0
不會將邊界添加到所有單元而不是段? –
+0
現在我編輯了我的答案。謝謝Bhumit Mehta。 – user3182143
相關問題
- 1. 無法創建表邊框
- 2. UI創建想法
- 3. ios:我想在tableview頂部和底部添加邊框
- 4. 如何創建帶有圖像和邊框的textview,如附圖所示
- 5. 如何在附加圖像的Android佈局周圍創建邊框?
- 6. UNNotificationAttachment無法附加圖像
- 7. 想要在aem觸摸UI中根據需要製作圖像
- 8. NSLayoutConstraint - 我想創建側邊
- 9. 如何在使用node_save($ node)創建圖像時將圖像附加到節點;
- 10. 如何爲圖像創建邊框?
- 11. 如何創建邊框圖像?
- 12. 我想在html上創建按鈕,但我無法調整到圖像
- 13. 在Tableview中創建列表視圖xamarin.forms
- 14. 在附加數據庫中創建成員表,SPROC,視圖
- 15. 在tableview中顯示圖像
- 16. 無法在PaperScript/Javascript中創建圖像?
- 17. 無法附加位圖圖像。 Android
- 18. 我在resultstring一些圖片,我想在tableview中顯示它
- 19. 在ImageView中顯示邊框到圖像
- 20. jquery-ui無法在grails中正確加載ui圖像
- 21. 我想根據使用javascript的數學結果顯示圖像
- 22. 我想創建圖像干預
- 23. 無法擺脫Safari的圖像邊框
- 24. 在android中創建動態的帶有邊框的TableView?
- 25. 無法創建9patch圖像
- 26. 我無法在webview中顯示圖像
- 27. 我想爲圖像設置邊框或描邊,在corona sdk中可以嗎?
- 28. 我想在我的熊貓數據框中創建一列value_counts
- 29. Javascript mouseover,在圖像中添加邊框
- 30. 如何使用圖像創建背景,無邊框圓角
創建自定義標題視圖,並添加'UIImageView'的1個像素高度和那個灰色。 – VRAwesome