我想从超级视图中"删除"UIView并在最后添加它...但是在属于superview的其余UI视图的"底部".
这可能吗?
任何帮助非常感谢!
嗯...
- (void)insertSubview:(UIView *)view atIndex:(NSInteger)index;
你可能会追求什么?或者 -
- (void)insertSubview:(UIView *)view belowSubview:(UIView *)siblingSubview;
虽然您可以通过调用sendSubviewToBack来避免一起删除视图(如果您不需要出于任何其他原因): -
- (void)sendSubviewToBack:(UIView *)view;