每日成长总结

  • isMemberOfClass:和isKindOfClass:对比
  isMemberOfClass:  该方法是判断对象是否是只属于当前类
  isKindOfClass: 该方法是判断对象属于当前类或者父类
  • tableview隐藏最后一行分割线
static void setLastCellSeperatorToLeft(UITableViewCell* cell)
{
    if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
        [cell setSeparatorInset:UIEdgeInsetsZero];
    }

    if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
        [cell setLayoutMargins:UIEdgeInsetsZero];
    }

    if([cell respondsToSelector:@selector(setPreservesSuperviewLayoutMargins:)]){
        [cell setPreservesSuperviewLayoutMargins:NO];
    }
}
  • 解决scrollview和系统侧滑返回手势冲突的办法
-(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer  
{  
    // 首先判断otherGestureRecognizer是不是系统pop手势  
    if ([otherGestureRecognizer.view isKindOfClass:NSClassFromString(@"UILayoutContainerView")]) {  
        // 再判断系统手势的state是began还是fail,同时判断scrollView的位置是不是正好在最左边  
        if (otherGestureRecognizer.state == UIGestureRecognizerStateBegan && self.contentOffset.x == 0) {  
            return YES;  
        }  
    }  
      
    return NO;  
} 
  • 解决长按textfield放大镜显示不正常的问题

分析:由于Window的层次导致,默认的windowLevel是1。如果层次相同则会导致显示不正常。

解决:创建新的UIWindow时将windowLevel调高一个层次则可解决问题。附上代码

_window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
_window.windowLevel = UIWindowLevelNormal + 1;
  • 解决视频播放横屏导致tabbar偏移的bug
    [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(OrientationDidChange:)name:UIDeviceOrientationDidChangeNotification object:nil];// 监听横竖屏
  - (void)OrientationDidChange:(NSNotification *)noti {
    self.navigationController.navigationBar.frame = CGRectMake(0, 0, ScreenX, 64);// 不设置回来会导致tabbar偏移
}
  • 解决因为有alertview弹出导致键盘弹两次的问题
  dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1.0f * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
            [alert show];
        });
  • 根据显示的最大列数求行数的公式
row =  count+maxCow-1/ maxCow
  • 从数组中提取相同的元素组成新数组
NSArray *array1 = @[@"2016-10-01",@"2016-10-02",@"2016-10-03",
                        
                        @"2016-10-01",@"2016-10-02",@"2016-10-03",
                        
                        @"2016-10-01",@"2016-10-02",@"2016-10-03",
                        
                        @"2016-10-01",@"2016-10-02",@"2016-10-03",
                        
                        @"2016-10-01",@"2016-10-02",@"2016-10-03",
                        
                        @"2016-10-01",@"2016-10-02",@"2016-10-03",
                        
                        @"2016-10-04",@"2016-10-06",@"2016-10-08",
                        
                        @"2016-10-05",@"2016-10-07",@"2016-10-09"];
    NSMutableArray *array = [NSMutableArray arrayWithArray:array1];
    
    NSMutableArray *dateMutablearray = [@[] mutableCopy];
    for (int i = 0; i < array.count; i ++) {
        
        NSString *string = array[I];
        
        NSMutableArray *tempArray = [@[] mutableCopy];
        
        [tempArray addObject:string];
        
        for (int j = i+1; j < array.count; j ++) {
            
            NSString *jstring = array[j];
            
            if([string isEqualToString:jstring]){
                
                [tempArray addObject:jstring];
                
                [array removeObjectAtIndex:j];
                j -= 1;
                
            }
            
        }
        
        [dateMutablearray addObject:tempArray];
        
    }
    
    NSLog(@"dateMutable:%@",dateMutablearray);
  • 比较两个日期差多少天
- (NSInteger)getDifferenceByDate:(NSString *)date {
        //获得当前时间
    NSDate *now = [NSDate date];
        //实例化一个NSDateFormatter对象
    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
        //设定时间格式
    [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
    NSDate *oldDate = [dateFormatter dateFromString:date];
    NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
    unsigned int unitFlags = NSDayCalendarUnit;
    NSDateComponents *comps = [gregorian components:unitFlags fromDate:oldDate  toDate:now  options:0];
    return [comps day];
}
  • 与js交互(js调用OC方法)
_configuretion = [[WKWebViewConfiguration alloc] init];
    // Webview的偏好设置
    _configuretion.preferences = [[WKPreferences alloc]init];
    _configuretion.preferences.minimumFontSize = 10;
    _configuretion.preferences.javaScriptEnabled = YES;
    _configuretion.processPool = [[WKProcessPool alloc] init];
    _configuretion.preferences.javaScriptCanOpenWindowsAutomatically = NO;
    ;
    // 通过js与webview内容交互配置
    WKUserContentController *userContentController = _configuretion.userContentController;
    
   // OC注册供JS调用的方法
    [userContentController addScriptMessageHandler:self name:@"productId"];
    //展示文章
    self.webView = [[WKWebView alloc]initWithFrame:CGRectMake(0, 64, ScreenX, ScreenY - 64 - 35) configuration:_configuretion];
#pragma mark - js回调
-(void)userContentController:(WKUserContentController *)userContentController didReceiveScriptMessage:(WKScriptMessage *)message {
    //userContentController 注册message的WKUserContentController;
    //message:js传过来的数据
    //id body:消息携带的信息 Allowed types are NSNumber, NSString, NSDate, NSArray, NSDictionary, and NSNull.
    //message.name  js发送的方法名称
    HZLog(@"jsMessage:%@",message);
    if ([message.name isEqualToString:@"productId"]) { // 跳转到产品详情
        // 获取ID
        NSString *shopId = message.body[@"productId"];
        [self getTheMoreMessageOfGoodsWithId:shopId];
    }
   
}
  • 控制collectionview头部随着cell滚动策略 但又让第二段头部悬浮置顶
  if (scrollView.contentOffset.y>头部偏移量) {
        self.layout.sectionHeadersPinToVisibleBounds = YES;
    }else{
        self.layout.sectionHeadersPinToVisibleBounds = NO;
    }
  • iqkeyboardmanager使得navigation偏移的问题

打开这个第三方的文件,更改IQUIView+Hierarchy.m文件的topMostController如下:
 -(UIViewController *)topMostController  
{  
    NSMutableArray *controllersHierarchy = [[NSMutableArray alloc] init];  
      
    UIViewController *topController = self.window.rootViewController;  
      
    if (topController)  
    {  
        [controllersHierarchy addObject:topController];  
    }  
      
    while ([topController presentedViewController]) {  
          
        topController = [topController presentedViewController];  
        [controllersHierarchy addObject:topController];  
    }  
      
    UIViewController *matchController = [self viewController];  
      
//    while (matchController != nil && [controllersHierarchy containsObject:matchController] == NO)  
//    {  
//        do  
//        {  
//            matchController = (UIViewController*)[matchController nextResponder];  
//  
//        } while (matchController != nil && [matchController isKindOfClass:[UIViewController class]] == NO);  
//    }  
      
    return (UIViewController*)matchController;  
}
  • 按钮内部文字太长省略号在中间的问题
设置这个属性就可以和label一样显示在后面
checkBtn.titleLabel.lineBreakMode = NSLineBreakByTruncatingTail;
  • 导航栏侧滑返回到一半出现...问题
    手势返回拖动一半,放手,navigationBar上会出现三个小蓝点,而且位置不规律,可以肯定这个不是项目代码或者图片搞出来的东西,一定是SDK自己蹦出來的。 后台尝试发现UIBarButtonItem的title如果是nil的话,就会有这个问题。
 解决方案:把[self.navigationItem setHidesBackButton:YES];去掉,然後把假装成返回按钮的UIBarButtonItem的title设置成@""。
  • 刷新tableview cell乱跳的问题
    每次更新数据调用[reload data],cell会上下跳动一下然后马上恢复正常
    解决方案如下:
 tab.estimatedRowHeight = 0;
//    tab.estimatedSectionHeaderHeight = 0;
//    tab.estimatedSectionFooterHeight = 0;
  • 设置全局断点,定位奔溃在哪一行

    每日成长总结_第1张图片
    断点.png

  • cell布局用masonry约束冲突的问题
    对于一些复杂的cell,可能经常会出现控件位置不固定的问题,在滑动的过程当中就可能会复用
    解决方案如下:

[self.title mas_remakeConstraints:^(MASConstraintMaker *make) {
        if (self.proprietaryImg.hidden) {
            make.left.mas_equalTo(12 * ScreenX / 375);
        }else{
            make.left.mas_equalTo(self.proprietaryImg.mas_right).offset(4);
        }
        make.right.mas_equalTo(-6);
        make.top.mas_equalTo(self.imageView.mas_bottom).mas_offset(9 * ScreenX / 375);
    }];

这个方法会删掉之前的布局,这样就不会冲突。

  • 不等高cell布局用masonry自适应高度
    对于一些高度不定cell,我们可以选择在数据加载完毕手动计算高度并缓冲,当然还有更简单的方法,用masonry自适应

    每日成长总结_第2张图片
    步骤.png

  • launchImage.storyboard设置启动图片很方便

    每日成长总结_第3张图片
    image.png

  • xib布局用kvc添加属性

    每日成长总结_第4张图片
    image.png

  • iOS13 tabbar字体颜色渲染的问题
    iOS13之前使用的是:

设置item title颜色

[[UITabBarItem appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:

                                                   [UIColor redColor], NSForegroundColorAttributeName,

                                                 nil] forState:UIControlStateSelected、UIControlStateNormal];

设置图片

vc.tabBarItem.image = [[UIImage imageNamed:@"xxx"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];

vc.tabBarItem.selectedImage = [[UIImage imageNamed:@"xxx"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];

设置选中 及默认的颜色

在iOS13运行项目时发现 在从A页面Push B页面隐藏tabbar 后返回 点击tabbarItem时 title的颜色被重置成系统色值

解决:

*目前我的方法只能解决设置选中的颜色 没法设置默认颜色

设置图片的方法不变

设置title 选中颜色使用

tabVC.tabBar.tintColor = [UIColor redColor];

因为默认的情况下我们的项目图片也是灰色的 所以目前不用设置默认颜色

看到此贴后有人有更好的解决方案 希望能分享...

有兄弟在帖子下方给出了设置默认颜色的方法

[[UITabBar appearance] setUnselectedItemTintColor:[UIColor yellowColor]];
  • iospush到其它控制器的时候有时候会卡住跳不过去
    原因是:原因是手势pop的问题. 当处在navi的根控制器时候, 做一个侧滑pop的操作, 看起来没任何变化, 但是再次push其它控制器时候就会出现上述问题了。这种情况是会出现在我们自定义的navigation中,因为继承自UINavigation后,原先的右划手势被禁掉了,而我们经常会加上一句话打开手势
 self.interactivePopGestureRecognizer.delegate = (id)self;

这时候我们如果在跟视图里面执行右划手势,相当于执行了一个pop。(只是我们没有看到效果而已),然后接着去执行push,自然就push不到下一级页面了

解决方法,判断当前页面是不是根视图,如果是就禁止掉右划手势,如果不是就打开,一般我们controller都会继承自同一个,在里面写就行,如下:

//判断如果是页面是navigationController中的第一个页面就禁止左划手势,不然在第一个页面执行左划手势后在push不到第二个页面
-(void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
    if (self.navigationController.viewControllers.firstObject == self) {
        self.navigationController.interactivePopGestureRecognizer.enabled = false;
    }else{
        self.navigationController.interactivePopGestureRecognizer.enabled = true;
    }
}
  • iOS一键生成appicon

https://icon.wuruihong.com/#/ios

  • 根据相同的id重新分组
- (void)dealData:(NSArray *)grands {
    NSMutableArray *grandsA = [NSMutableArray arrayWithArray:grands];
    NSMutableArray *dataArr = [NSMutableArray array];
    for (t i=0; i

你可能感兴趣的:(每日成长总结)