2011-09-09 45 views
1

我有一個自定義單元格圖像的高度和寬度,以及它在it..and我以這種方式訪問​​ 該圖像中如何獲得放置在一個自定義單元格中的ios

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
[[tableCell specialImage] setImage:[UIImage imageNamed:@"One.png"]]; 
} 
一個圖像

所以現在我想知道我怎樣才能得到hieght而這種「特殊的形象」的寬度..

等待你的答覆

+0

參見本[文章](http://stackoverflow.com/questions/5249664/iphone如何獲得高度和寬度的uiimage) – Saran

+0

謝謝薩蘭,,爲我們的快速回復..我會通過它 – Ranjit

+0

但saran多數民衆贊成在工作.. – Ranjit

回答

1

按照意見,我希望以下以工作:

CGSize specialImageSize = [[tableCell specialImage] size]; 

如果這不起作用,您需要發佈更多代碼以獲取更多幫助。例如,如果上述方法不起作用,那麼瞭解更多關於我認爲是tableCell指向的UITableViewCell子類的內容會很有幫助。

1

請嘗試以下代碼:

UIImage *imageThatIsSpecial = [UIImage imageNamed:@"One.png"]; 

NSLog(@"Image height is %f and its width is %f",imageThatIsSpecial.size.height, imageThatIsSpecial.size.width); 

[[tableCell specialImage] setImage:imageThatIsSpecial]; 
2

我認爲你正在尋找的是尺寸:

CGRect size = [tableCell specialImage].bounds.size; 
相關問題