我需要一個像這樣的列表:如何獲得像Phone.app-「最近的選項卡」或Mail.app-「郵件列表」的TableViewCell
「我的標題」。 。 。 。 。 。 。 。 。 。 。 「10:20 AM」
「Created-by:meadlai」
「TitleString」。 。 。 。 。 。 。 。 。 。 。 「09:33 AM」
「Created-by:meadlai」
「TextLabel」。 。 。 。 。 。 。 。 。 。 。 「11:59 AM」
「detailTextLabel」
有三個字段:標題,創建者,時間。
它幾乎像 Phone.app「最近呼叫」的風格。
或 Mail.app的mailList。我不認爲它需要一個自定義的UITableViewCell。
我可以使用System-UITableViewCell創建一個像它一樣的列表嗎?
任何線索或代碼?非常感謝你。
cell.textLabel.text = @「Victoria」; cell.detailTextLabel.text = @「created-by:mead」;如何在右側添加時間? – meadlai
最後,我把它弄出來......,使用accessoryView
cell.textLabel.text = @「Victoria」; cell.detailTextLabel.text = @「created-by:mead」; UILabel * time = [[UILabel alloc] initWithFrame:CGRectMake(5,5,80,20)]; time.text = @「05:59 PM」; cell.accessoryView = time; – meadlai