2011-12-17 49 views
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); 

    } 

和我得到的是以下幾點:

enter image description here

什麼是對detailTextLabel正確的轉型,因此將根據細胞的textLabel正確放置?

回答

0

我個人不會實現與一個仿射變換,只要創建新的標籤和自定義視圖和他們自己與autoresizingmask

我看着我的iPhone用阿拉伯語和默認導航還是到位置左側,因此不需要在屏幕截圖中打開綠色披露指標。

相關問題