3
我有一個UITableView
,我想申請就可以了一番改造,因此將支持從右到左的語言,我所做的是以下幾點:轉化的UITableView以支持從右到左的語言
for(UITableViewCell *cell in self.RSSNewsTableView.visibleCells) {
cell.transform = CGAffineTransformMakeRotation(180*0.0174532925);
cell.textLabel.transform = CGAffineTransformMakeRotation(180*0.0174532925);
cell.detailTextLabel.transform = CGAffineTransformMakeRotation(-M_PI);
cell.textLabel.textAlignment = UITextAlignmentRight;
// cell.transform = CGAffineTransformMakeRotation(2*M_PI);
}
和我得到的是以下幾點:
什麼是對detailTextLabel
正確的轉型,因此將根據細胞的textLabel
正確放置?