码迷,mamicode.com
首页 >  
搜索关键字:uiresponder    ( 267个结果
通过当前view得到所在的viewcontroller
1 @implementation UIView (GetVCAdditions) 2 3 - (UIViewController *)GetiewController { 4 Class vcc = [UIViewController class]; 5 UIResponder...
分类:其他好文   时间:2014-09-16 18:40:30    阅读次数:226
在appdelegate中尝试解决socket掉线问题
#import #import "MainViewController.h"#import "Reachability.h"@interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window;@pro...
分类:移动开发   时间:2014-09-12 10:01:23    阅读次数:267
根据View找控制器
- (UIViewController*)viewController{ for (UIView* next = [self superview]; next; next = next.superview) { UIResponder* nextResponder = [next...
分类:其他好文   时间:2014-09-05 19:50:01    阅读次数:160
UINavigationController页面切换合基本设置  
新建的类和文件名AppDelegate.h#import<UIKit/UIKit.h> @interfaceAppDelegate:UIResponder<UIApplicationDelegate> @property(strong,nonatomic)UIWindow*window; @endAppDelegate.m#import"AppDelegate.h" #import"FirstViewController.h" #import"SecondViewCon..
分类:其他好文   时间:2014-09-05 10:12:21    阅读次数:258
视图的跳转,ViewController的使用 。。。。。。
创建两个视图控制类MainViewController和SecondViewControllerAppDelegate.h#import<UIKit/UIKit.h> @interfaceAppDelegate:UIResponder<UIApplicationDelegate> @property(strong,nonatomic)UIWindow*window; @endAppDelegate.m#import"AppDelegate.h" #import"Ma..
分类:其他好文   时间:2014-09-02 10:38:54    阅读次数:309
用UIView写霓虹灯效果。。。NSTimer的使用
首先创建一个视图NioLampViewController类AppDelegate.h#import<UIKit/UIKit.h> @interfaceAppDelegate:UIResponder<UIApplicationDelegate> @property(strong,nonatomic)UIWindow*window; @endAppDelegate.m#import"AppDelegate.h" #import"NioLampViewController..
分类:其他好文   时间:2014-09-02 10:37:25    阅读次数:407
七彩霓虹灯可以实现两种效果
//  MHTAppDelegate.h //  HomeworkNeonLamp //  Copyright (c) 2014年 Summer. All rights reserved. #import @interface MHTAppDelegate : UIResponder UIApplicationDelegate> @property (retain, no...
分类:其他好文   时间:2014-08-23 14:02:02    阅读次数:242
UI 纯代码实现计算器
//  MHTAppDelegate.h //  TestCa //  Copyright (c) 2014年 Summer. All rights reserved. #import @interface MHTAppDelegate : UIResponder UIApplicationDelegate,UITextFieldDelegate> @property (r...
分类:其他好文   时间:2014-08-23 11:26:10    阅读次数:290
009-手势触摸事件处理
问题一:iOS中有哪些事件??在用户使用app过程中,会产生各种各样的事件?iOS中的事件可以分为3大类型问题二:什么叫响应者对象??在iOS中不是任何对象都能处理事件,只有继承了UIResponder的对象才能接收并处理事件。我们称之为“响应者对象”?UIApplication、UIViewCon...
分类:其他好文   时间:2014-08-20 23:59:23    阅读次数:623
iOS中中UIView头文件详细解析
@interface UIView : UIResponder/*** 通过一个frame来初始化一个UI控件*/- (id)initWithFrame:(CGRect)frame;// YES:能够跟用户进行交互@property(nonatomic,getter=isUserInteractio...
分类:移动开发   时间:2014-08-13 00:45:14    阅读次数:276
267条   上一页 1 ... 23 24 25 26 27 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!