欢迎来到代码驿站!

iOS代码

当前位置:首页 > 移动开发 > iOS代码

用iOS代码获取APP启动页图片

时间:2022-08-16 12:37:31|栏目:iOS代码|点击:

用代码获取APP启动页图片 

//
// AppleSystemService.swift
// Swift-Animations
//
// Created by YouXianMing on 16/8/11.
// Copyright © 2016年 YouXianMing. All rights reserved.
//

import UIKit

class AppleSystemService : NSObject {
 
 /**
  Get the lauch image.
  
  - returns: The lauch image.
  */
 class func launchImage() -> UIImage {
  
  var lauchImage  : UIImage!
  var viewOrientation : String!
  let viewSize  = UIScreen.mainScreen().bounds.size
  let orientation  = UIApplication.sharedApplication().statusBarOrientation
  
  if orientation == .LandscapeLeft || orientation == .LandscapeRight {
   
   viewOrientation = "Landscape"
   
  } else {
   
   viewOrientation = "Portrait"
  }
  
  let imagesInfoArray = NSBundle.mainBundle().infoDictionary!["UILaunchImages"]
  for dict : Dictionary <String, String> in imagesInfoArray as! Array {
   
   let imageSize = CGSizeFromString(dict["UILaunchImageSize"]!)
   if CGSizeEqualToSize(imageSize, viewSize) && viewOrientation == dict["UILaunchImageOrientation"]! as String {
    
    lauchImage = UIImage(named: dict["UILaunchImageName"]!)
   }
  }
  
  return lauchImage
 }
}

源码 - Objective-C 

//
// AppleSystemService.h
// AppleSystemService
//
// Created by YouXianMing on 16/7/2.
// Copyright © 2016年 YouXianMing. All rights reserved.
//

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>

@interface AppleSystemService : NSObject

/**
 * Get the lauch image.
 *
 * @return The lauch image.
 */
+ (UIImage *)launchImage;

@end



//
// AppleSystemService.m
// AppleSystemService
//
// Created by YouXianMing on 16/7/2.
// Copyright © 2016年 YouXianMing. All rights reserved.
//

#import "AppleSystemService.h"

@implementation AppleSystemService

+ (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;
}

@end

上一篇:iOS开发微信支付的方法

栏    目:iOS代码

下一篇:iOS 11 UINavigationItem 去除左右间隙的方法

本文标题:用iOS代码获取APP启动页图片

本文地址:http://www.codeinn.net/misctech/210895.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有