2012-05-05 56 views

回答

0

這將是簡單的過程,只需要使用表格視圖的第二部分,開創細胞標籤插入並使其center.Use這行代碼在你的表格方法中。

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
if(indexPath.section==1) 
    { 
     putts_Label=[[UILabel alloc]initWithFrame:CGRectMake(150, 8, 24, 24)]; 
     [email protected]"0"; 

     putts_Label.textColor=[UIColor blackColor]; 
     putts_Label.backgroundColor=[UIColor clearColor]; 
     [cell.contentView addSubview:putts_Label]; 
    } 
+0

謝謝,我不知道它的名字 – user1307957

+0

如果它有助於你通知我們在這裏發表評論。 – vishiphone

+0

@ user1307957如果此答案或任何其他幫助您,請單擊答案旁邊的「複選標記」將其標記爲正確。我注意到你沒有爲你的任何問題標出正確的答案。 –

0

我認爲這只是一個正常的UITableView,看看在​​和UITableView Programming Guide

+0

謝謝,我不知道它的名字 – user1307957

+0

不用擔心,TableView非常簡單,因此發佈代碼可能對您沒有任何意義,除非您瞭解功能,那麼如果您有任何問題,請提出更詳細的問題和某人將幫助你解決問題。哦,如果你認爲答案是正確的,那麼將其標記爲已接受,如果這是超級有用的upvote! – Mat

相關問題