我正在尝试实现类似于 iOS 7 上的新消息应用程序(也是 Safari)中看到的效果,导航栏本身有一个进度条:
我尝试了几种方法,并找到了一种几乎可行的方法。我正在使用的是一个自定义子类,UINavigationBar
它在初始化时将我的自定义进度条添加为子视图。这几乎可以正常工作,但是当我尝试添加时应用程序崩溃NSLayoutConstraints
了。
工作代码(没有布局约束,因此不适应方向变化):
- (void)commonInit
{
if (!self.progressIndicator) {
self.progressIndicator = [[ECourseProgressIndicatorView alloc] initWithFrame:CGRectMake(0, self.bounds.size.height - 3, self.bounds.size.width, 3)];
[self addSubview:self.progressIndicator];
}
}
我希望能够使用的代码(NSLayoutConstraint
添加了 s),但崩溃了:
- (void)commonInit
{
if (!self.progressIndicator) {
self.progressIndicator = [[ECourseProgressIndicatorView alloc] initWithFrame:CGRectMake(0, self.bounds.size.height - 3, self.bounds.size.width, 3)];
[self addSubview:self.progressIndicator];
self.progressIndicator.translatesAutoresizingMaskIntoConstraints = NO;
[self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"|-0-[progressIndicator]-0-|" options:0 metrics:nil views:@{@"progressIndicator": self.progressIndicator}]];
[self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:[progressIndicator(==3)]-0-|" options:0 metrics:nil views:@{@"progressIndicator": self.progressIndicator}]];
}
}
我在运行带有布局约束的代码时遇到的错误包含在 Gist here中。如果我不设置translatesAutoresizingMaskIntoConstraints = NO
,那么代码可以工作,但我指定的布局约束被忽略,有利于自动调整掩码约束。
任何人都可以解释一下吗?
PS我最初确实考虑将进度条添加为 UINavigationBar 上方的视图(因此根本不在其层次结构中),但我找不到有关如何在导航栏上方视觉定位视图的信息(以 Z 坐标术语,而不是 Y)。
注意:我在 Apple 开发者论坛上发布了这个,但没有得到回复。