1

最新の SDK を使用して iOS アプリを開発しています。

たくさんUITableViewの行がありますが、5 行しか表示されません。つまり、ユーザーは 5 行しか表示できません。彼/彼女はテーブルをスクロールできますが、5 行しか表示されません。

3行目を選択可能にしたい。ユーザーは、表示されている 3 番目の行のみを選択できます。

UIPickerViewCore Data を使用していて、すべてのコードがデリゲートで正常に動作するようになったため、最初にシミュレートしようとしています。次に、背景と選択領域UITableViewをカスタマイズする方法がわかりません。UIPickerView

表示されている 3 行目を選択可能な唯一の行にするにはどうすればよいですか?

4

3 に答える 3

1

行へのスナップとともに完全な例(ScrollView Delegateを実装することによる):

ViewController.h:

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController
    @property (weak, nonatomic) IBOutlet UITableView *myTableView;
@end

ViewController.m:

#import "ViewController.h"

static int kRowHeight = 92;
static int kArrayCount = 20;

@interface ViewController ()
@property (nonatomic, strong) NSMutableArray *tableViewData;

@end

@implementation ViewController
-(void)populateArray {
    for (int i=0; i<kArrayCount; i++) {
        [self.tableViewData addObject:[NSString stringWithFormat:@"String # %d",i]];
    }
    [self.myTableView reloadData];
}

#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    // Return the number of sections.
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    // Return the number of rows in the section.
    return [self.tableViewData count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    cell.textLabel.text = [self.tableViewData objectAtIndex:indexPath.row];
    // Configure the cell...

    return cell;
}

#pragma mark - Table view delegate
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    // Navigation logic may go here. Create and push another view controller.
    // Standard UIAlert Syntax
    UIAlertView *myAlert = [[UIAlertView alloc]
                            initWithTitle:@"Selected"
                            message:[NSString stringWithFormat:@"Selected Row %d", indexPath.row]
                            delegate:nil
                            cancelButtonTitle:@"OK"
                            otherButtonTitles:nil, nil];

    [myAlert show];

}

- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    NSArray *indexPaths = [tableView indexPathsForVisibleRows];
    if ([[indexPaths objectAtIndex:2] isEqual:indexPath]) {
        return indexPath;
    } else {
        return nil;
    }
}


#pragma mark - ScrollView Delegate Methods (Make rows snap to position top)
- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView
                     withVelocity:(CGPoint)velocity
              targetContentOffset:(inout CGPoint *)targetContentOffset {
    int cellHeight = kRowHeight;
    *targetContentOffset = CGPointMake(targetContentOffset->x,
                                       targetContentOffset->y - (((int)targetContentOffset->y) % cellHeight));
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    self.tableViewData = [[NSMutableArray alloc] initWithCapacity:kArrayCount];
    [self populateArray];
    // Do any additional setup after loading the view, typically from a nib.
}

@end
于 2013-03-17T01:04:40.793 に答える
1

次のように実装-[id<UITableViewDelegate> tableView:willSelectRowAtIndexPath:]します。

- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    NSArray *indexPaths = [tableView indexPathsForVisibleRows];
    if ([indexPaths objectAtIndex:2] isEqual:indexPath) {
        return indexPath;
    } else {
        return nil;
    }
}

詳細はこちら

于 2013-03-16T21:33:48.567 に答える
0

配列を使用して、表示[self.tableView indexPathsForVisibleRows]されているものを見つけることindexPathsができます。willSelectRowAtIndexPathメソッドでは、3 番目の要素を除くすべてが返されnilます。

強調表示を避けるために、これを使用して設定することもできます

cell.selectionStyle = UITableViewCellSelectionStyleNone;

CFRAIP メソッドで。

于 2013-03-16T17:09:35.857 に答える