系统就会自动根据UINavigationBar和statusBar将view下移64,frame从(0,64)开始。这样,我们在布局内部控件的时候依然可以从(0,0)开始,而不必担心上部被UINavigationBar遮挡了。
模糊视图效果
//模糊效果
UIVisualEffectView *bgView = [[UIVisualEffectView alloc] initWithEffect:[UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]];
bgView.alpha = 0.9f;
bgView.frame = CGRectMake(0, 0, WIDTH, HEIGHT);
bgView.layer.cornerRadius = BALL_RADIUS / 2;
bgView.clipsToBounds = YES;
[self addSubview:bgView];
超级棒的模糊效果
//系统对于作为controllerview的第一个subView的全屏UIScrollView,会自动处理其contentInset,使其头部和尾部的内容起始和末尾时不会被UINavigationBar和UITabBar挡住。但是如果你关闭系统这一自动功能的话
self.automaticallyAdjustsScrollViewInsets = NO;
UIScrollView的内容就会从frame的(0,0)位置开始显示,这样开头就被UINavigationBar,尾部就被UITabBar挡住而只能看到模糊一片,除非用户使劲下拉上拉。这时就需要你自己去设置contentInset了。
与此同时,由于现在view的frame都是从(0,0)开始,对于非UIScrollView及其子类就会有些麻烦了,因为如果子控件frame如果不考虑UINavigationBar的高度,就会被UINavigationBar挡住,当然我们可以自己在布局的时候加上UINavigationBar的高度就行了。
其实还有一种更方便的方法就是设置其edgesForExtendedLayout属性,该属性默认为UIRectEdgeAll,意为view会充分扩展至屏幕边缘包括上下左右,而不管有没有遮挡,此时就是view的frame即为整个屏幕。但是不像UIScrollView,其它view没有contentInset一说,所以automaticallyAdjustsScrollViewInsets对其并不起作用。此时,我们修改edgesForExtendedLayout属性
self.edgesForExtendedLayout = UIRectEdgeNone;
系统就会自动根据UINavigationBar和statusBar将view下移64,frame从(0,64)开始。这样,我们在布局内部控件的时候依然可以从(0,0)开始,而不必担心上部被UINavigationBar遮挡了。
另一种情况就是我们不想要那种半透明模糊效果,设置UINavigationBar的translucent为NO。此时,view的frame也都会从(0,64)开始,而此时对于UIScrollView,automaticallyAdjustsScrollViewInsets就不再起作用了。
总结:UIScrollView如果要实现穿透UINavigationBar的效果,其frame就必须从(0,0)开始,然后设置合适的contentInset,如果UINavigationBar下方还有悬浮view的话,就不能依赖系统的automaticallyAdjustsScrollViewInsets了,需要自己来算contentInset。还有其他的特殊需求,就需要组合使用以上属性了。
关于AFN一些相关知识点
manager.requestSerializer = [AFJSONRequestSerializer serializer];//请求--设置请求参数类型
manager.responseSerializer = [AFHTTPResponseSerializer serializer];//响应--不确定返回类型时设置--得到NSData类型
manager.responseSerializer.acceptableContentTypes = [NSSet setWithObject:@"text/html"];//如果报接受类型不一致请替换一致text/html或别的
//设置cell分割线闭合
-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
[cell setSeparatorInset:UIEdgeInsetsZero];
}
if ([cell respondsToSelector:@selector(setPreservesSuperviewLayoutMargins:)]) {
[cell setPreservesSuperviewLayoutMargins:NO];
}
if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
[cell setLayoutMargins:UIEdgeInsetsZero];
}
}
//tableview的编辑状态
自定义的cell,编辑状态不右移,需要把自定义的控件放在contentView,编辑就可以右移了
以后有零碎代码片段继续更新~