美文网首页
获取启动页用图

获取启动页用图

作者: XP_Swf | 来源:发表于2017-03-24 11:11 被阅读0次

    - (UIImage *)launchImage {

    UIImage    *lauchImage  = nil;

    NSString    *viewOrientation = nil;

    CGSize    viewSize  = [UIScreen mainScreen].bounds.size;

    UIInterfaceOrientation orientation  = [[UIApplication sharedApplication] statusBarOrientation];

    if (orientation == UIInterfaceOrientationLandscapeLeft || orientation == UIInterfaceOrientationLandscapeRight) {

    viewOrientation = @"Landscape";

    } else {

    viewOrientation = @"Portrait";

    }

    NSArray *imagesDictionary = [[[NSBundle mainBundle] infoDictionary] valueForKey:@"UILaunchImages"];

    for (NSDictionary *dict in imagesDictionary) {

    CGSize imageSize = CGSizeFromString(dict[@"UILaunchImageSize"]);

    if (CGSizeEqualToSize(imageSize, viewSize) && [viewOrientation isEqualToString:dict[@"UILaunchImageOrientation"]]) {

    lauchImage = [UIImage imageNamed:dict[@"UILaunchImageName"]];

    }

    }

    return lauchImage;

    }

    相关文章

      网友评论

          本文标题:获取启动页用图

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