1

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

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

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

我正在尝试模拟UIPickerView第一个,因为我正在使用 Core Data 并且所有代码现在都可以与UITableView委托一起正常工作,其次,我不知道如何自定义UIPickerView背景和选择区域。

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

4

3 回答 3

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 回答
1

完整的示例以及对齐行(通过实现 ScrollView 委托):

视图控制器.h:

#import <UIKit/UIKit.h>

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

视图控制器.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 回答
0

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

为避免突出显示,您还可以使用它来设置

cell.selectionStyle = UITableViewCellSelectionStyleNone;

在 CFRAIP 方法中。

于 2013-03-16T17:09:35.857 回答