只要bounces
和alwaysBounceVertical
属性设置为 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),当我尝试滚动时,表格视图不会反弹。为什么不反弹?