美文网首页
UIBarButtonItem问题

UIBarButtonItem问题

作者: 张俊凯 | 来源:发表于2018-06-05 17:53 被阅读3次

1.在iOS 11以后,UIBarButtonItem设置customView,如果包含image,会自动改变大小和图片一致,为了防止这个现象,需要把图片按照需要的尺寸重画

//用if进行判断
if ([UIDevice currentDevice].systemVersion.floatValue >= 11.0f){}

进行画图的时候,会出现图片模糊,需要注意一个函数

UIGraphicsBeginImageContext(CGSize size) //模糊图片
UIGraphicsBeginImageContextWithOptions(size, NO, 0.0);//清晰图片

    [image drawInRect:CGRectMake(0, 0, size.width, size.height)];
    UIImage* resultImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

相关文章

网友评论

      本文标题:UIBarButtonItem问题

      本文链接:https://www.haomeiwen.com/subject/mhrmsftx.html