我想在UITableViewCell的右側顯示圖像。 我使用這個代碼,做到這一點:UITableViewCell與右側圖像
CGRect imageRect = {80,0,225,44};
UIImageView *uiv = [[UIImageView alloc] initWithFrame:imageRect];
[uiv setImage:[UIImage imageNamed:[NSString stringWithFormat:@"star%@.png", [[self reataurant] valueForKey:@"stars"]]]];
[uiv setClipsToBounds:YES];
[cell addSubview:uiv];
我的問題是,該圖像是在其他細胞中所示,當我滾動tableview中。 我在做什麼錯了?
的可能重複[HTTP://計算器的.com /問題/ 780395 /的UITableViewCell與 - 圖像 - 上的右(http://stackoverflow.com/questions/780395/uitableviewcell-with-image-on-the-right) – Sreeram 2012-04-04 15:17:51