1

只要bouncesalwaysBounceVertical属性设置为 YES,当用户滚动时 UITableView 应该弹跳(即使是空的)。当我初始化 UITableViewController 时,一切都按预期工作。当我使用简单的视图层次结构初始化从 nib 加载的 UIViewController 时:具有单个 UITableView 子级的顶级 UIView,然后表格视图不再反弹。这是我使用的代码:

#import <UIKit/UIKit.h>

@interface AppDelegate : UIResponder <UIApplicationDelegate, UITableViewDataSource>
@end

@implementation AppDelegate

@synthesize window = _window;

- (BOOL) application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];

    UIViewController *rootViewController = nil;
    UITableView *tableView;
    BOOL loadFromNib = NO;
    if (loadFromNib)
    {
        rootViewController = [[UIViewController alloc] initWithNibName:@"ViewController" bundle:nil];
        tableView = [rootViewController.view.subviews objectAtIndex:0];
    }
    else
    {
        rootViewController = [[UITableViewController alloc] initWithStyle:UITableViewStylePlain];
        tableView = (UITableView *)rootViewController.view;
    }
    tableView.dataSource = self;
    NSLog(@"%@ bounces: %@", tableView.class, tableView.bounces ? @"YES" : @"NO");
    NSLog(@"%@ alwaysBounceVertical: %@", tableView.class, tableView.alwaysBounceVertical ? @"YES" : @"NO");

    self.window.rootViewController = rootViewController;
    [self.window makeKeyAndVisible];

    return YES;
}

- (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return 0;
}

- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
}

@end

loadFromNib当我在变量设置为 YES 或 NO的情况下运行此代码时,它总是记录以下内容:

UITableView bounces: YES
UITableView alwaysBounceVertical: YES

但是当我从笔尖加载它时(即loadFromNib设置为YES),当我尝试滚动时,表格视图不会反弹。为什么不反弹?

4

1 回答 1

6

我无法准确解释原因,但空表视图的行为似乎非常不稳定。无论如何,tableView.bounces = YES手动设置(例如,在-viewDidLoad表格视图所属的视图控制器的方法中)可以解决此类问题并确保您的表格视图始终弹跳,即使是空的。

于 2012-09-07T10:25:12.350 回答