0
A
回答
1
如果您使用的子類爲NSTextFieldCell
(ImageAndTextCell)。你可以在
- (NSRect)imageRectForBounds:(NSRect)cellFrame
方法中控制圖像的位置。
0
而不是默認TableViewCell,創建您自己的自定義tableViewCell並根據您的需要來定位它。
1
可以創建自定義單元格...
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"ImageOnRightCell";
UIImageView *photo;
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]];
cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;
photo = [[[UIImageView alloc] initWithFrame:CGRectMake(225.0, 0.0, 80.0, 45.0)]];
photo.tag = PHOTO_TAG;
photo.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleHeight;
[cell.contentView addSubview:photo];
} else {
photo = (UIImageView *)[cell.contentView viewWithTag:PHOTO_TAG];
}
return cell;
}
這看起來就像.... 或U可以讀取此鏈接.... http://developer.apple.com/library/ios/#documentation/userexperience/conceptual/tableview_iphone/TableViewCells/TableViewCells.html
+0
感謝您的幫助..... :-) – Fritzables 2013-02-24 06:46:00
相關問題
- 1. 設置位置
- 2. 設置tfoot位置
- 3. Android:設置位置
- 4. Admob設置位置?
- 5. 設置的放置位置
- 6. SSRS動態設置表位置/位置
- 7. 將ScrollableComposite位置設置爲位置
- 8. 設置位數
- 9. 設置位
- 10. uitableviewcellaccessory的設置位置
- 11. 設置位置範圍
- 12. 設置滾動位置
- 13. 設置鼠標位置
- 14. 設置按鈕的位置
- 15. VIM設置光標位置
- 16. 設置多個位置
- 17. 爲Servlet設置JSP位置
- 18. UIGraphicsBeginImageContext如何設置位置?
- 19. Wikitude POI未設置位置
- 20. 使用點設置位置
- 21. CSS設置絕對位置
- 22. nginx的設置FO位置
- 23. SDL_Mixer設置聲音位置
- 24. PHP Imagick compositeImage設置位置
- 25. Nginx的位置設置
- 26. 設置位置固定
- 27. 設置tempdir的位置
- 28. 設置鼠標位置
- 29. ImageView和設置位置
- 30. 設置窗口位置
您使用的子類NSTextFieldCell的? – 2013-02-23 10:58:14