0
在我的應用程序中包含一個分組的tableView,detailTextLabel顯示通過日期選擇器輸入的日期。我使用這個日期從webservice檢索數據。我想要做的是將UILabels添加到單元格的detailTextLabel,以便我可以訪問標籤的文本屬性以獲取日期並將請求發送到webservice。我嘗試添加標籤的detailTextLabel這樣將UILabel添加到UITableViewCell的detailTextLabel
cell.detailTextLabel = self.fromDate //fromDate is an instance of UILabel;
但它顯示我的錯誤...
我怎樣才能解決這個