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

这篇文章主要为大家详细介绍了用iOS代码获取APP启动页图片的相关资料,感兴趣的小伙伴们可以参考一下

用代码获取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

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持得得之家。

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

很多公司现在都在做免费WIFI,车站、公交、地铁、餐厅,只要是人员密集流动的地方就有WIFI,免费WIFI从最初的网页认证方式也逐渐向客户端认证方式偏移。本文主要介绍iOS获取当前设备WiFi信息的方法,有需要的可以参考借鉴。
这篇文章主要介绍了iOS获取cell中webview内容尺寸,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
这篇文章主要为大家详细介绍了iOS获取到用户当前位置,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
在大家的日常开发中,经常会遇到有的app需要从系统相册中获取图片,如设置用户头像等,下面这篇文章给大家分享这个功能的实现,有需要的可以参考借鉴。
本文通过实例演示在IOS开发中如何获取指定年月的当月天数,有需要的小伙伴们可以参考借鉴。
这篇文章主要为大家详细介绍了iOS获取手机的Mac地址的多种方法,感兴趣的小伙伴们可以参考一下