0

UITableViewiOS アプリでの並べ替えコントロールを実装するために必要なすべてのプロパティを設定していますが、並べ替えコントロールは表示されません。コードは次のとおりです。

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{

    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{

    return 4;

}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"DragAndDrop";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    cell.textLabel.text=[[NSString alloc]initWithFormat:@"Row %d", indexPath.row];
    cell.showsReorderControl=YES;
    return cell;
}

- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
{
    return YES;
}


-(void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath
{
    [tableView setEditing:YES animated:YES];
}


-(void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath
{
         [tableView reloadData];
}

必要なメソッドをすべて実装しました。表示されないのはなぜですか?

4

3 に答える 3

3

そのためには、最初から UITableView の「編集」プロパティを設定する必要があります。

お役に立てば幸いです。

乾杯!

于 2013-01-29T06:17:44.683 に答える
0

ストーリーボードのデリゲートをテーブルビューにリンクするのを忘れました。もう大丈夫です!!

于 2013-01-29T06:33:35.943 に答える