开启系统自带侧滑返回
如果使用的是navigationbar做的导航栏,那么修改导航栏后,你就会发现自带的侧滑返回不能使用了,那么在nav的根控制器里面加上这句,就OK了
// Objective - C self.navigationController.interactivePopGestureRecognizer.delegate = (id)self; // swift因为是强类型,所以不能像上面那么写 // 你只需要根视图遵循UIGestureRecognizerDelegate协议,然后加上下面这句就OK了 navigationController.interactivePopGestureRecognizer.delegate = self;
此处楼主一般写项目时,从不使用自带的导航栏,在控制器的基类将导航栏隐藏掉,然后新建一个View,作为导航栏,这样的话,就不用考虑手势侧滑返回的问题了.到时在每个控制器直接调用添加导航栏的方法就可以了,代码如下:
-(void)setNaVWithTile:(NSString *)title imageName:(NSString *)image andRightBtn:(NSDictionary *)btnDic { UIView *V = [[UIView alloc] initWithFrame:CGRectMake(0, 0, kScreenWidth, 64)]; V.backgroundColor = [UIColor whiteColor]; [self.view addSubview:V]; if (image == nil) { image = @"back-arrow"; } UIImageView *imv = [[UIImageView alloc]initWithFrame:CGRectMake(20, 30, 12.5, 21)]; imv.image = [UIImage imageNamed:[NSString stringWithFormat:@"%@",image]]; [V addSubview:imv]; UIButton *backBtn = [UIButton buttonWithFrame:CGRectMake(0, 20, 40, 40) title:nil backgroundColor:nil type:UIButtonTypeCustom target:self action:@selector(backBtnAction:)]; [V addSubview:backBtn]; UILabel *titlelab = [UILabel lableWithFrame:CGRectMake(40, 20, kScreenWidth-80, 44) title:title textFont:16 textColor:UIColorFromRGB(0x333333)]; titlelab.font = [UIFont systemFontOfSize:17]; titlelab.textAlignment = NSTextAlignmentCenter; // titlelab.backgroundColor = [UIColor redColor]; [V addSubview:titlelab]; UIView *line = [[UIView alloc]initWithFrame:CGRectMake(0, 63, kScreenWidth, 1)]; line.backgroundColor = UIColorFromRGB(0xe8e8e8); [V addSubview:line]; if (btnDic != nil) { UIButton * btn = [[UIButton alloc]init]; btn.frame = CGRectMake(V.width - 60, backBtn.top, 60, 40); btn.titleLabel.font = [UIFont systemFontOfSize:14]; if ([[btnDic objectForKey:@"title"] isEqualToString:@""]) { [btn setImage:[UIImage imageNamed:[NSString stringWithFormat:@"%@",[btnDic objectForKey:@"image"]]] forState:UIControlStateNormal]; }else{ [btn setTitle:[NSString stringWithFormat:@"%@",[btnDic objectForKey:@"title"]] forState:UIControlStateNormal]; [btn setTitleColor:UIColorFromRGB(0x666666) forState:UIControlStateNormal]; } [btn addTarget:self action:@selector(BtnAction:) forControlEvents:UIControlEventTouchUpInside]; [V addSubview:btn]; } } -(void)backBtnAction:(UIButton *)sender{ [self.navigationController popViewControllerAnimated:YES]; }
保持手机常亮
在项目需求上,在固定页面,我们可能会有保持手机屏幕常亮的状态,如果遇上的话,在当前控制器页面加上下面这句代码就可以了,在离开此页面时,将常亮关闭改为NO就OK!
[[UIApplication sharedApplication] setIdleTimerDisabled:YES];
点击H5页面的按钮,获取H5页面的超链接
直接贴代码,你一看就懂了,遵循
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType{ NSString *requestString = [[[request URL] absoluteString]stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; DDLog(@"requestString : %@",requestString); NSArray *components = [requestString componentsSeparatedByString:@"|"]; DDLog(@"=components=====%@",components); NSString *str1 = [components objectAtIndex:0]; DDLog(@"str1:::%@",str1); NSArray *array2 = [str1 componentsSeparatedByString:@"/"]; DDLog(@"array2:====%@",array2); NSInteger coun = array2.count; NSString *method = array2[coun-1]; DDLog(@"method:===%@",method); if ([method isEqualToString:@"good_id"])//查看详情,其中红色部分是HTML5跟咱们约定好的,相应H5上的按钮的点击事件后,H5发送超链接,客户端一旦收到这个超链接信号。把其中的点击按钮的约定的信号标示符截取出来跟本地的标示符来进行匹配,如果匹配成功,那么就执行相应的操作,详情见如下所示。 { //根据条件在此做相应的操作 return NO; }else if ([method isEqualToString:@"video_id"]) { //根据条件在此作相应的操作 return NO; } return YES; }
从App中跳转到手机系统设置
在iOS10.0之前,点击如图中的打开推送
WechatIMG25.jpeg
是可以跳转到设置中的推送中的是否允许页面,但是在iOS10.0以后所有的只能跳转到改App设置页面了
NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString]; if ([[UIApplication sharedApplication] canOpenURL:url]) { [[UIApplication sharedApplication] openURL:url]; }
collectionViewCell 复用问题
假如cell的个数太多的话肯定会发生复用的问题:
比如数:屏幕的宽度只能显示3个cell但是现在有四个需要显示,那么当点击第一个cell向左滑动时会显示第四个 这个时候第四个item就是从复用队列中取出一个cell ,那么这个cell可能还保留这上一个的属性 比如说字体是红色的 其宽度可能会很大,不适合当前的string的宽度 ,左右滑动的时候cell 之间的间隔也会发生错乱 这绝不是想要的结果 。出现这个原因主要是cell的复用产生的。
解决方法:
在cell复用之前把cell恢复到初始化状态,那么这就要重写- (void)prepareForReuse方法
具体做法如下:
```
(void)prepareForReuse{
[superprepareForReuse];
//这个方法写到自定义cell 里面
//此处将cell的状态(颜色等状态)恢复成初始状态
}
```
这样就解决了颜色问题
* 注意:prepareForReuse这个方法是CollectionViewCell的方法
作者:明明的魔样,转载请联系作者获得授权