我遇到了一个问题。工具栏在iOS7 iphone 5s真实设备前面添加了填充。
;
然而,问题在模拟器和iOS7 iphone 4s设备上都看不到。
我的配置为
任何人都可以指出可能出现的问题?提前致谢
答案 0 :(得分:3)
即使我遇到了同样的问题(但是,在模拟器和设备中都看到了它)。我使用setWidth
消息来限制每个段的宽度。所以,像: -
[segmentedControl setWidth:75.0f forSegmentAtIndex:0];
应该解决这个问题。我不是在使用故事板
答案 1 :(得分:1)
我并不为这个问题感到自豪,但它确实为我解决了这个问题:
// in the app delegate class
#define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending)
// in the view
- (void)fixToolbarWidth
{
if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"7.0"))
{
float adjust = -10.5f;
// self.toolbar is linked to the UIToolbar
self.toolbar.frame = CGRectMake(adjust, 0, [SizeHelper getSizeInOrientation].width-adjust, self.toolbar.frame.size.height);
// self.segmentedControl is linked to the UISegmentedControl
self.segmentedControl.frame = CGRectMake(0, 0, self.toolbar.frame.size.width+(adjust*2), self.segmentedControl.frame.size.height);
}
}
- (void)viewDidLoad
{
[super viewDidLoad];
// fix on first load
[self fixToolbarWidth];
}
- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
[super willAnimateRotationToInterfaceOrientation:toInterfaceOrientation duration:duration];
// resize if they rotate the device
[self fixToolbarWidth];
}
更新/简化版
只要正确设置工具栏和分段控制器以扩展.xib文件中的整个宽度,您就可以在viewDidLoad
if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"7.0"))
{
// use a different adjustment for iPad vs iPhone/touch
float adjust = (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) ? -14.0f : -9.0f;
self.toolbar.frame = CGRectMake(adjust, 0, self.toolbar.frame.size.width-adjust, self.toolbar.frame.size.height);
self.segmentedControl.frame = CGRectMake(0, 0, self.segmentedControl.frame.size.width+adjust, self.segmentedControl.frame.size.height);
}
答案 2 :(得分:0)
我也有同样的问题。我所做的是将段控件放在工具栏之外。它对我有用。
答案 3 :(得分:0)