1 @implementation UIView (GetVCAdditions) 2 3 - (UIViewController *)GetiewController { 4 Class vcc = [UIViewController class]; 5 UIResponder...
分类:
其他好文 时间:
2014-09-16 18:40:30
阅读次数:
226
#import #import "MainViewController.h"#import "Reachability.h"@interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window;@pro...
分类:
移动开发 时间:
2014-09-12 10:01:23
阅读次数:
267
- (UIViewController*)viewController{ for (UIView* next = [self superview]; next; next = next.superview) { UIResponder* nextResponder = [next...
分类:
其他好文 时间:
2014-09-05 19:50:01
阅读次数:
160
新建的类和文件名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
创建两个视图控制类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
首先创建一个视图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
// 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
问题一:iOS中有哪些事件??在用户使用app过程中,会产生各种各样的事件?iOS中的事件可以分为3大类型问题二:什么叫响应者对象??在iOS中不是任何对象都能处理事件,只有继承了UIResponder的对象才能接收并处理事件。我们称之为“响应者对象”?UIApplication、UIViewCon...
分类:
其他好文 时间:
2014-08-20 23:59:23
阅读次数:
623
@interface UIView : UIResponder/*** 通过一个frame来初始化一个UI控件*/- (id)initWithFrame:(CGRect)frame;// YES:能够跟用户进行交互@property(nonatomic,getter=isUserInteractio...
分类:
移动开发 时间:
2014-08-13 00:45:14
阅读次数:
276