#import "TWO_ViewController.h"#define SCREEN_Width [[UIScreen mainScreen] bounds].size.width@interface TWO_ViewController ()@end@implementation TWO_Vi... ...
分类:
其他好文 时间:
2017-04-18 10:13:31
阅读次数:
180
一、目录结构: 二、具体内容 [UIScreen mainScreen].bounds.size.width用的很普遍,一般来说定义成宏更好,然后根据屏幕宽高进行尺寸的适配。 获取的是你 iPhone 的名字。 这个方法获取电池电量不是很精确,下边会介绍一个获取精确电池电量的。 上面这个方法是通过 ...
分类:
移动开发 时间:
2017-04-10 09:27:23
阅读次数:
315
最近在一个小项目中遇到一个动画切换的效果,一时被难到了,后来又去看了下苹果公司提供的动画类,找到了几个动画的执行方法,这些默认的动画方法足够满足一般需求的动画效果了,接下来贴代码 首先我们在Controller中创建对应的按钮按钮 CGFloat mainHeight = [UIScreen mai ...
分类:
移动开发 时间:
2017-02-23 13:14:49
阅读次数:
219
let vc = ViewController() let navc = UINavigationController(rootViewController: vc) window = UIWindow(frame: UIScreen.mainScreen().bounds) window?.bac ...
分类:
移动开发 时间:
2016-11-04 16:57:19
阅读次数:
480
屏幕适配的解决方案: 1.使用frame:可以使用[UIScreen mainScreen].bounds.size.height来判断是哪个版本,根据屏幕的宽高进行计算控件的大小位置,这种方法,代码复杂,容易出错;而且维护难度大,灵活性极差,一些子控件的布局如果各个版本没有变化,可以使用frame ...
分类:
其他好文 时间:
2016-10-16 18:48:25
阅读次数:
131
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; [self.window makeKeyAndVisible]; DYViewController *vc = [[DYViewControlle ...
分类:
其他好文 时间:
2016-09-27 10:17:14
阅读次数:
119
- (void)snapshotScreen:(UIView *)myView { CGSize size = myView.bounds.size; UIGraphicsBeginImageContextWithOptions(size, NO, [UIScreen mainScreen].sca ...
分类:
移动开发 时间:
2016-09-24 17:23:56
阅读次数:
165
1.UIWebView加载Html文件 2.UIWebView的委托方法 UIWebView加载Html文件 //uiwebview加载网络页面 UIWebView *webView=[[UIWebView alloc] initWithFrame:[[UIScreen mainScreen] bo ...
分类:
移动开发 时间:
2016-09-19 18:04:58
阅读次数:
170
#define UILABEL_LINE_SPACE 6 #define HEIGHT [ [ UIScreen mainScreen ] bounds ].size.height //给UILabel设置行间距和字间距 -(void)setLabelSpace:(UILabel*)label wi ...
分类:
其他好文 时间:
2016-09-04 00:09:53
阅读次数:
145
个人在写项目中常常用到的一些代码片段,会不断更新 /** 获取屏幕宽度 - returns: 宽度 */ func deviceWidth() -> (CGFloat) { let width = UIScreen.mainScreen().bounds.size.width return widt ...
分类:
编程语言 时间:
2016-08-31 18:57:18
阅读次数:
265