我试图在方法中旋转后读取 tableview 的 contentOffset
willRotateToInterfaceOrientation:持续时间:。我使用 UITableViewController 和 tableHeaderView 中的搜索栏创建了一个示例。
场景 1:给定设备处于纵向并且我隐藏了搜索栏然后我将设备旋转到横向之后我希望不会看到 UISearchbar 和 contentOffset 保持不变。
场景 2:给定设备处于横向状态并且我隐藏了搜索栏然后我将设备旋转到纵向之后我希望不会看到 UISearchbar 和 contentOffset 保持不变。
方案 1 按预期工作。场景 2 弹出 Searchbar 并且 contentoffset 为零
有人知道为什么 ContentOffset 为零吗?我希望它是 44(搜索栏的高度)。
有没有办法解决这个问题?你会怎么做?
//
// ViewController.m
// test
//
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Uncomment the following line to preserve selection between presentations.
// self.clearsSelectionOnViewWillAppear = NO;
// Uncomment the following line to display an Edit button in the navigation bar for this view controller.
// self.navigationItem.rightBarButtonItem = self.editButtonItem;
}
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration{
//is necessary to prevent showing searchbar
dispatch_async(dispatch_get_main_queue(), ^{
double y = self.tableView.contentOffset.y;
self.tableView.contentInset = UIEdgeInsetsMake(-1*y, 0, 0, 0);
NSLog(@"y %f",y);
NSLog(@"Begin offset %@",NSStringFromCGPoint(self.tableView.contentOffset));
});
}
- (void)viewDidAppear:(BOOL)animated{
self.tableView.tableHeaderView = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width, 44)];
}
#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
#warning Potentially incomplete method implementation.
// Return the number of sections.
return 0;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
#warning Incomplete method implementation.
// Return the number of rows in the section.
return 0;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
// Configure the cell...
return cell;
}
#pragma mark - Table view delegate
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
}
@end