笔记

如果设置了图片的frame,但是不是应有的效果,可能是auto在做怪,在.m里设置

- (void)awakeFromNib{

    self.autoresizingMask = UIViewAutoresizingNone;

}

 

 

    // 在UIView里没有直接的presentview方法,在单例里调用

    [[UIApplication sharedApplication].keyWindow.rootViewController presentViewController:showPicture animated:YES completion:nil];

原文地址:https://www.cnblogs.com/yidoucai/p/5324715.html