码迷,mamicode.com
首页 >  
搜索关键字:appdelegate    ( 1028个结果
UIActionSheet(操作列表)
1 #import "AppDelegate.h" 2 3 @interface AppDelegate () 4 5 @end 6 7 @implementation AppDelegate 8 9 10 - (BOOL)application:(UIApplication *)appl...
分类:其他好文   时间:2015-06-30 23:31:57    阅读次数:224
iOS笔记055 - UI总结
1、程序启动后的开始动画程序启动后可以加载一个简单的动画界面来介绍程序或者用户信息。可以使用一个xib来描述界面。并且如果想在程序加载完成后第一个加载这个xib文件,需要在Appdelegate中手动加载这个xib// 通过stroyboard启动,跟控制器的view并不会在程序启动完成的时候添加到...
分类:移动开发   时间:2015-06-30 21:53:03    阅读次数:219
UIView 和Label
//// AppDelegate.m// UI_Lesson1//// Created by 李洪鹏 on 15/6/29.// Copyright (c) 2015年 李洪鹏. All rights reserved.//#import "AppDelegate.h"#define kwindth...
分类:其他好文   时间:2015-06-29 21:56:37    阅读次数:117
设置导航条标题的颜色
代码:AppDelegate.m- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Override point fo...
分类:其他好文   时间:2015-06-29 16:41:35    阅读次数:102
解决横竖屏问题(只允许指定的控制器横屏)
1.如图可对整个项目设置的所支持的横竖屏2.若一个项目中只有某些控制器可以横屏其他都为竖屏 步骤如下(以只有播放视频的控制器可以横屏 当全屏播放时自动横屏)(1)只勾选第一个home键在下(2)在Appdelegate.h中 添加属性@property(nonatomic)BOOL allowRot...
分类:其他好文   时间:2015-06-29 14:37:42    阅读次数:197
简单实现下拉刷新数据
1 #import "AppDelegate.h" 2 #import "SearchController.h" 3 @interface AppDelegate () 4 @property (nonatomic,strong)UITableView *table; 5 @property (n....
分类:其他好文   时间:2015-06-27 22:36:50    阅读次数:159
吸收效果,像是在Mac上的垃圾桶的效果一样
1 #import "AppDelegate.h" 2 #import 3 4 @interface AppDelegate () 5 @property (nonatomic ,strong)UIImageView *birdImage; 6 @end 7 8 @implementatio...
分类:系统相关   时间:2015-06-27 01:17:27    阅读次数:140
让整个界面呈现水波纹的效果
1 #import "AppDelegate.h" 2 #import 3 4 @interface AppDelegate () 5 @property (nonatomic ,strong)UIImageView *birdImage; 6 @end 7 8 @implementatio...
分类:其他好文   时间:2015-06-27 01:12:37    阅读次数:120
在一个Label上设置多种颜色字体
1 #import "AppDelegate.h" 2 3 @interface AppDelegate () 4 5 @end 6 7 @implementation AppDelegate 8 9 10 - (BOOL)appli...
分类:其他好文   时间:2015-06-26 17:35:27    阅读次数:167
用UIImageView作出动画效果
#import "AppDelegate.h"@interface AppDelegate ()@end@implementation AppDelegate- (BOOL)application:(UIApplication *)application didFinishLaunchingWith...
分类:其他好文   时间:2015-06-26 01:37:49    阅读次数:100
1028条   上一页 1 ... 64 65 66 67 68 ... 103 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!