我在我的项目中使用 InAppSettingsKit。在 iOS 9 更新之前一切都很好。我在 iOS 8 中没有这个问题。它仍然可以工作,但现在单元格对齐看起来很奇怪。现在单元格内容从左侧和右侧有奇怪的偏移。
我已经下载了示例项目并发现了有趣的时刻。并编辑了一个单元格配置单元格。所以实际上 cell 是绿色的,contentView 是红色的。
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:kIASKPSToggleSwitchSpecifier];
cell.accessoryView = [[IASKSwitch alloc] initWithFrame:CGRectMake(0, 0, 79, 27)];
cell.contentView.autoresizingMask |= UIViewAutoresizingFlexibleWidth;
cell.contentView.backgroundColor = [UIColor redColor];
cell.backgroundColor = [UIColor greenColor];
[((IASKSwitch*)cell.accessoryView) addTarget:self action:@selector(toggledValue:) forControlEvents:UIControlEventValueChanged];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
当控制器配置表单 xib 时效果很好。
配置: 结果: 所以... 正常的左右偏移。没有任何问题。但!以编程方式推送后。
- (IBAction)showSettingsPush:(id)sender {
[self.navigationController pushViewController:[[IASKAppSettingsViewController alloc] init] animated:YES];
}
PS无论如何感谢您的关注。如果有任何帮助,我将不胜感激。