码迷,mamicode.com
首页 >  
搜索关键字:uiresponder    ( 267个结果
获取当前视图所在控制器
在ios开发中经常在自定义组件或者xib文件中切换到其他视图,那么就需要当前控制器, - (UIViewController*)viewController {     for (UIView* next = [self superview]; next; next = next.superview) {         UIResponder* nextResponder...
分类:其他好文   时间:2015-08-27 13:33:29    阅读次数:111
iOS UITableView制作类似QQ好友列表视图
1 #import 2 3 @interface AppDelegate : UIResponder 4 5 @property (strong, nonatomic) UIWindow *window;6 7 8 @end 1 #import "AppDelegate.h" 2 #i...
分类:移动开发   时间:2015-08-25 23:14:40    阅读次数:214
IOS UITableView分组与索引分区实例
1 #import 2 3 @interface AppDelegate : UIResponder 4 5 @property (strong, nonatomic) UIWindow *window;6 7 8 @end 1 #import "AppDelegate.h" 2 #import "...
分类:移动开发   时间:2015-08-25 23:12:03    阅读次数:219
模态视图-多视图应用
模态视图在ios开发中用处很广 ios开发中,在当前视图上再弹出一个视图(模态视图),实现一个简单的多视图应用,下面给大家写个demo 一 。 // // AppDelegate.h // 模态视图 // #import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWind...
分类:其他好文   时间:2015-08-21 09:33:14    阅读次数:134
iOS 聊天界面
1 #import 2 3 @interface AppDelegate : UIResponder 4 5 @property (strong, nonatomic) UIWindow *window;6 7 8 @end 1 #import "AppDele...
分类:移动开发   时间:2015-08-20 16:48:28    阅读次数:161
TabBar实现页面跳转(AppDelegate +NavigationViewController + TabBarViewController)
1.AppDelegate.h定义TabBarController#import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window;@property (strong, nonato...
分类:移动开发   时间:2015-08-18 13:38:20    阅读次数:158
用UIButton实现页面跳转(AppDelegate +NavigationViewController)
1.AppDelegate.h定义一个UINavigationController#import #import "MainViewController.h"@interface AppDelegate : UIResponder @property (strong, nonatomic) UIWi...
分类:移动开发   时间:2015-08-18 13:35:52    阅读次数:196
iOS 地图(添加大头针)
首先在工程中导入MapKit.framework库文件1 #import 2 3 @interface AppDelegate : UIResponder 4 5 @property (strong, nonatomic) UIWindow *window;6 7 @end 1 #import "A...
分类:移动开发   时间:2015-08-17 23:19:05    阅读次数:311
swift入门-实现简单的登录界面
// // AppDelegate.swift // UIWindow import UIKit @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? func application(application: UIApplic...
分类:编程语言   时间:2015-08-16 15:15:43    阅读次数:762
swift-tabbar的使用,页面之间的跳转
// // AppDelegate.swift // TabbarController import UIKit @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? func application(application: ...
分类:编程语言   时间:2015-08-15 09:07:40    阅读次数:161
267条   上一页 1 ... 13 14 15 16 17 ... 27 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!