使第三个可见行成为唯一可选择的行

时间:2013-03-16 17:03:19

标签: ios uitableview uipickerview

我正在使用最新的SDK开发iOS应用程序。

我有一个UITableView有很多行,但我只显示了五行。换句话说,用户只能看到五行。他/她可以滚动表格,但只能看到五行。

我想让第三行可选择。用户只能选择第三个可见行。

我首先尝试模拟UIPickerView,因为我正在使用Core Data,所有代码现在可以正常使用UITableView委托,其次,我不知道如何自定义UIPickerView背景和选择区域。

如何将第三个可见行设为唯一可选择的行?

3 个答案:

答案 0 :(得分: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;
    }
}

更多信息here

答案 1 :(得分: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

答案 2 :(得分:0)

您可以使用数组[self.tableView indexPathsForVisibleRows]找出indexPaths可见的内容。在willSelectRowAtIndexPath方法中,除第三个元素外,返回nil

为避免突出显示,您也可以使用此功能设置

cell.selectionStyle = UITableViewCellSelectionStyleNone;

在CFRAIP方法中。