當我滾動tableview時,來自textfield的數據在我的tableview單元格中重複。 Textfield重複每6行再次&。ios:文本字段在uitableview中複製數據
如何使用自定義單元格從文本字段中刪除重複的數據。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *Identifier= @"ProductCell";
PlaceOrderTableViewCell * ProductCell = [ProductsTblView dequeueReusableCellWithIdentifier:Identifier];
if (ProductCell==nil)
{
ProductCell = [[PlaceOrderTableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:Identifier];
}
}
我怎樣才能得到textview在tableview中的文本 – svmrajesh 2015-03-31 19:38:17
我編輯了我的答案,參見上面的內容 – 2015-03-31 19:45:15