iOS 问题记录

1,NSJSONSerialization 序列化对象包含Nan 造成NSInvalidArgumentException

知识点

[NSJSONSerialization dataWithJSONObject:jsonObject options:0 error:NULL] 
如果jsonObject 里面有Nan的熟悉,序列化会奔溃。
image.png
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Invalid number value (NaN) in JSON write'
2,调用yy_color 构造的NSAttributedString,在YYLabel上显示没有问题。但是在UILabel上显示不出来。
3,NSAttributedString 算出来的高度,YYLabel显示不完整,因为遇到表情字符需要把计算出的高度+4。
4,YYLabel 设置行数,然后设置NSAttributedString,如果超出行数会自动 ... (即lineBreakMode =NSLineBreakByTruncatingTail)。如果是UILabel ,则需要在设置NSAttributedString,再调用lineBreakMode =NSLineBreakByTruncatingTai 方可以显示...
5, popToRootViewControllerAnimated导致tabbar白屏的问题参考链接

在 iOS 6 以上使用UINavigationController使用popToRootViewControllerAnimated并且需要将 tab 切换到某个 index 的时候,如果这么用

[self.navigationController popToRootViewControllerAnimated:YES];
[self.tabBarController setSelectedIndex:2];

会导致 tabbar 被 hidden ,结果是出现 tabbar 部分出现一片白色。
解决方案是将行代码的顺序对调也就是

[self.tabBarController setSelectedIndex:2];
[self.navigationController popToRootViewControllerAnimated:YES];

先设置 index ,在来 popToRoot 这样就可以避免这个问题啦

6,Pod init 失败。RuntimeError - [Xcodeproj] Unknown object version

问题

image.png

解决办法:gem update xcodeproj

image.png
6,format %.xf万会四舍五入。需要根据需求决定是否四舍五入
     self.scanNumLabel.text = [NSString stringWithFormat:@"%.1f万",item.likeNum/10000.0];//点赞数量
7,UIScrollerView 调用下面方法的时候,如果[scrollView setContentOffset:pointA animated:YES],然后立即获取 调用 [scrollView contentOffset]获取的值pointB并不是PointA
- (void)setContentOffset:(CGPoint)contentOffset animated:(__unused BOOL)animated
8,UICollectionView 调用reloadData,并不会立即执行collectionView:cellForItemAtIndexPath:,而且此时如果尝试获取collectionView的ContentSize,并不是reloadData之后的值。如果想获取reloadData之后的ContentSize可以调用下面方法
self.collectionView.collectionViewLayout.collectionViewContentSize.height
9,UIViewController 再调用 loadView方法前,在外部给viewController.view = testView 赋值的话。系统就不会调用loadView方法了。
10,直接调用[[SDWebImageManager sharedManager].imageDownloader downloadImageWithURL 下载的图片不会缓存到 SDImageCache里面。如果需要缓存的话需要调用 [[SDWebImageManager sharedManager] loadImageWithURL 或者 SDWebImagePrefetcher
 [[SDWebImageManager sharedManager].imageDownloader 
downloadImageWithURL:[NSURL URLWithString:imageUrl] options:SDWebImageRetryFailed progress:nil completed:nil] 

    [[SDWebImageManager sharedManager] loadImageWithURL:[NSURL URLWithString:imageUrl] options:SDWebImageRetryFailed progress:nil completed:^(UIImage * _Nullable image, NSData * _Nullable data, NSError * _Nullable error, SDImageCacheType cacheType, BOOL finished, NSURL * _Nullable imageURL) {
        
    }];
或者
[[SDWebImagePrefetcher sharedImagePrefetcher] prefetchURLs:@[ graffiti, sizeSnapshot, gif ]];
11, 重写layoutSubviews的时候,一定别忘了调用 [super layoutSubviews]。否则有可能导致未定义行为。有一个UICollectionViewCell 重写了layoutSubviews忘了调用[super layoutSubviews],导致cell的contentView frame = CGRectzero。导致点击事件无法响应
12, 合理利用布局优先级,很好支持UICollectonView 内容少的时候被内容撑起,内容比较多的时候限定最大高度。让内容可以滚动。

make.height.equalTo(self.contentLabel.mas_height).priority(250);
make.height.lessThanOrEqualTo(@(kScreenHeight * 2/3.0)).priority(750);

@interface IKFMPrepareTypeTipVC ()

@property (nonatomic, strong) UIView *contentView;
@property (nonatomic, strong) UILabel *topLabel;
@property (nonatomic, strong) UILabel *contentLabel;
@property (nonatomic, strong) UIView *bottomLineView;
@property (nonatomic, strong) UIButton *knowBtn;
@property (nonatomic, strong) UICollectionView *collectionView;
@property (nonatomic, strong) NSMutableAttributedString *mutStr;
@end

@implementation IKFMPrepareTypeTipVC

- (void)dealloc{
    _collectionView.delegate = nil;
    _collectionView.dataSource = nil;
}

- (void)viewDidLoad {
    [super viewDidLoad];
    [self.view addSubview:self.contentView];
    [self.contentView addSubview:self.topLabel];
    [self.contentView addSubview:self.collectionView];
    [self.collectionView addSubview:self.contentLabel];
    [self.contentView addSubview:self.bottomLineView];
    [self.contentView addSubview:self.knowBtn];
    [self configLayout];
    
    UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapGesture:)];
    [self.view addGestureRecognizer:tapGesture];
}

//self.contentView 高度内部撑起
- (void)configLayout{
    [self.contentView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.width.equalTo(@(280 * kRate));
        make.centerX.equalTo(self.view);
        make.centerY.equalTo(self.view);
    }];
    [self.topLabel mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.equalTo(@25);
        make.centerX.equalTo(self.contentView);
    }];
    
    [self.collectionView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.equalTo(self.topLabel.mas_bottom).offset(12);
        make.left.equalTo(@20);
        make.right.equalTo(@-20);
        make.height.equalTo(self.contentLabel.mas_height).priority(250);
        make.height.lessThanOrEqualTo(@(kScreenHeight * 2/3.0)).priority(750);
    }];
    
    [self.contentLabel mas_makeConstraints:^(MASConstraintMaker *make) {
        make.edges.equalTo(self.collectionView);
    }];
    [self.bottomLineView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.equalTo(self.collectionView.mas_bottom).mas_offset(12);
        make.left.right.equalTo(self.contentView);
        make.height.equalTo(@0.5);
    }];
    [self.knowBtn mas_makeConstraints:^(MASConstraintMaker *make) {
        make.height.equalTo(@49);
        make.left.right.equalTo(@0);
        make.top.equalTo(self.bottomLineView.mas_bottom);
        make.bottom.equalTo(self.contentView.mas_bottom);
    }];
    if (self.mutStr) {
        self.contentLabel.attributedText = self.mutStr;
//        [self refreshWhenContentChange];
    }
}

内容比较多时


image.png

内容比较少时


image.png
13, UITextView 设置 text/attributedText的时候系统会调用setSelectedRange 设置光标位置。一般需要先设置text/attributedText 然后设置selectedRange。如果想控制UITextView的内容某些高亮,需要重写。需要重写- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text。然后重写attributedText。注意range的length = 0,表示插入内容。如果length > 0。则替换字符串。NSMutableAttributedString的
- (void)replaceCharactersInRange:(NSRange)range withAttributedString:(NSAttributedString *)attrString;

方法比较奇怪。如果attrString的length != range.length.会重复attrString的字符直到填充的length = range.length。如果replace的range.length != attrString.length .则先调用

      [mutAtt deleteCharactersInRange:range];
        [mutAtt insertAttributedString:insertAtt atIndex:range.location];
15, [self.textLabel sizeToFit] 然后紧接着调用约束如:
[self.textLabel mas_updateConstraints:^(MASConstraintMaker *make) {
            make.width.equalTo(@(self.labelWidth));
 }]; 

会出现跳动问题。解决办法,用字符串计算高度,然后调用约束

13, pod 用长了之后,会缓存好多不同版本的库,如果磁盘空间不足,可以删除~/Library/Caches/Cocoapods 文件夹

open ~/Library/Caches/Cocoapods

14,boundingRectWithSize 算出来的高度,在Label上是完美适配的

UILabel渲染结果


image.png

UITxtView 渲染结果:


image.png
15,限制UITextField的输入字数(长度)最正确的方法

(链接)[https://blog.csdn.net/hbblzjy/article/details/51969376];

16,ARMv7低端机型奇葩奔溃

//armv7 上下面写法奔溃

+ (void)requestTLDetailsWithFeedID:(uint64_t)feedID completion:(TLDetailsCompletion)completion;
+ (void)requestTLDetailsWithFeedID:(NSInteger)feedID completion:(TLDetailsCompletion)completion {
17,Load hook方法的时候不要用前向声明
Class HallTabViewController;
@implementation UIViewController (TabbarHandle)

+ (void)load {
    swizzleMethod([HallTabViewController class], @selector(viewDidAppear:), @selector(viewDidAppear_tabbar:));
    swizzleMethod([IKFollowViewController class], 
}
- (void)viewDidAppear_tabbar:(BOOL)animated {
    [self viewDidAppear_tabbar:animated];
    }
@end

正确写法如下:

#import "HallTabViewController.h"
@implementation UIViewController (TabbarHandle)

+ (void)load {
    swizzleMethod([HallTabViewController class], @selector(viewDidAppear:), @selector(viewDidAppear_tabbar:));
}
- (void)viewDidAppear_tabbar:(BOOL)animated {
    [self viewDidAppear_tabbar:animated];
    }
@end
19,在UICollectionView 中不要出现 自定义cell 里面包含另一个自定义cell。如果非要addSubview另一个cell,则需要[self.contentView addSubview:cell.contentView]; 否则会出现渲染不出来问题。

如下面代码:

@interface IKRecommendDecorateChannelCell ()
@property (nonatomic, strong) IKRecommendChannelCell *innerCell;
@end

@implementation IKRecommendDecorateChannelCell
- (instancetype)initWithFrame:(CGRect)frame {
    if (self = [super initWithFrame:frame]) {
        CGRect contentFrame = UIEdgeInsetsInsetRect(frame, UIEdgeInsetsMake(6, 6, 26, 6));
        IKRecommendChannelCell *cell = [[IKRecommendChannelCell alloc] initWithFrame:contentFrame];
        [self.contentView addSubview:cell];
        self.innerCell = cell;
    }
    return self;
}
20,不知道从什么系统开始 iPhoneX系列机型。在下面情况下push 一个控制器,底部tabbar 会延迟消失。
image.png

如果UIViewControllerB present 一个navigationController,然后dismiss 之后,然后push进入下一个界面vc,设置vc.hidesBottomBarWhenPushed = YES。但是进入vc的时候tabbar 会展示0.3之后才消失。

问题原因:是navigationController dismiss 之后,在push vc的时候。系统调用了UITabBarController 的viewWillLayoutSubviews.导致UITabbar 重新layout,调整了tabbar的frame导致了push之后之后tabbar显示了出来。然后系统会调用hiden又隐藏了。下次在push就好了。猜测系统内部状态出问题导致。

解决办法:在UIViewControllerB 的viewDidAppear:调用layout

    if(self.navigationController.viewControllers.count == 1){
        [self.tabBarController.tabBar forceShow];
        //修复iPhoneX上,UITabbarController的viewcontroller模态出带导航的控制器,然后消失。push下一个界面的时候,一瞬间显示tabbar
        [self.tabBarController.view setNeedsLayout];
        [self.tabBarController.view layoutIfNeeded];
    }
20,swizzleMethod, 如有一个基类ClassBase 有一个方法swizzle_methodA,ClassA,ClassB 分别继承ClassBase。

如果用下面方法调用会出现
1,ClassA.swizzle_methodA => ClassBase.swizzle_methodA,
2,ClassB.swizzle_methodA => ClassA.swizzle_methodA。

而我们期望中的效果是
1,ClassA.swizzle_methodA => ClassBase.swizzle_methodA
2,ClassB.swizzle_methodA => ClassBase.swizzle_methodA

解决办法1,是分别在ClassA,ClassB中重写swizzle_methodA。
解决方法2,

@implementation HallTabbarHandle
+ (void)load {
    swizzleMethod([ClassA class], @selector(methodA), @selector(swizzle_methodA));
    swizzleMethod([ClassB class], @selector(methodA), @selector(swizzle_methodA));
}
@end
void swizzleMethod(Class className, SEL originalSelector, SEL swizzledSelector) {
  // the method might not exist in the class, but in its superclass
  Method originalMethod = class_getInstanceMethod(className, originalSelector);
  Method swizzledMethod = class_getInstanceMethod(className, swizzledSelector);

  // class_addMethod will fail if original method already exists
  BOOL didAddMethod = class_addMethod(className, originalSelector,
                                      method_getImplementation(swizzledMethod),
                                      method_getTypeEncoding(swizzledMethod));

  // the method doesn’t exist and we just added one
  if (didAddMethod) {
    class_replaceMethod(className, swizzledSelector,
                        method_getImplementation(originalMethod),
                        method_getTypeEncoding(originalMethod));
  } else {
    method_exchangeImplementations(originalMethod, swizzledMethod);
  }
}
20,手动解析某一行奔溃栈

xcrun atos -o appname.app.dSYM/Contents/Resources/DWARF/appname -l 0x00000001000a0000(基址) 0x00000001009fbad8(函数地址) -arch arm64

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,335评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,895评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,766评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,918评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,042评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,169评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,219评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,976评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,393评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,711评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,876评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,562评论 4 336
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,193评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,903评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,142评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,699评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,764评论 2 351

推荐阅读更多精彩内容