遇到问题总结(持续更新)

  • 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<UIViewController*> *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;
  • 设置全局断点,定位奔溃在哪一行

    断点.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自适应

    步骤.png

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

    image.png

  • xib布局用kvc添加属性

    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<grandsA.count; i++) {
        NSMutableArray *tempArr = [NSMutableArray array];
        NCNGradeModel *modelI = grandsA[i];
        [tempArr addObject:modelI];
        for (int j=i+1; j<grandsA.count-i ; j++) {
            NCNGradeModel *modelJ = grandsA[j];
            if ([modelI.stageId isEqualToString:modelJ.stageId]) {
                [tempArr addObject:modelJ];
                [grandsA removeObject:modelJ];
            }
        }
        [dataArr addObject:tempArr];
    }
    NSLog(@"dataArr:%@",dataArr);
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,732评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,496评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,264评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,807评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,806评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,675评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,029评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,683评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,704评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,666评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,773评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,413评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,016评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,204评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,083评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,503评论 2 343

推荐阅读更多精彩内容

  • 每日成长日记总结:在我们培训特种兵之前是新兵连的培训,当你成绩合格了我们就进入了特种兵的培训,都是精心挑选出来的骨...
    钟月娥阅读 115评论 0 0
  • //设置尺寸为屏幕尺寸的时候self.window = [[UIWindow alloc] initWithFra...
    LuckTime阅读 793评论 0 0
  • 最好的风景是在街头上看人。嚼了口香糖,悠然悠然从一个商店门口到另一个商店门口,就这样暗暗的观察着路上的行人。 街头...
    有道理的萝卜阅读 230评论 0 1
  • 从五年前开始看书,因为职场受挫,心里十分郁闷,经亲人提醒,我开始看书并养成阅读习惯。从心理学到经济学,再到...
    田睿音阅读 412评论 0 3