#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
//让键盘称为第一响应者(进入当前的界面,键盘就弹出来)
[_textF becomeFir...
分类:
其他好文 时间:
2015-02-04 11:06:52
阅读次数:
128
1.类的声明与实现Objective-C类的声明要写在@interface 与 @end之间,实现要写在@implementation 与 @end之间2.类的-方法和+方法类的-方法即类的实例方法,+方法即类方法(静态方法)3.消息机制[objectA sayHello]; 即,向objectA....
分类:
其他好文 时间:
2015-02-04 01:59:01
阅读次数:
114
// .h#import @interface NSMutableArray (VIMI)- (void)shuffle;@end#import "NSMutableArray+VIMI.h"@implementation NSMutableArray (VIMI)- (void)shuffle{ ...
分类:
其他好文 时间:
2015-02-03 16:42:46
阅读次数:
164
第一步:在storyboard添加UIWebView 第二步: 连线 第三步: @implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; // 定位资源 NSURL *url = [NS...
分类:
Web程序 时间:
2015-02-02 21:21:55
阅读次数:
187
@interface YGSectionHeaderView : UIView@property NSUInteger section;@property (nonatomic, weak) UITableView *tableView;@end@implementation YGSectionHe...
分类:
移动开发 时间:
2015-01-31 23:12:23
阅读次数:
217
Chapter 3 Controlling and Scrolling@implementation GameScene { __weak CCNode *_levelNode; __weak CCPhysicsNode *_physicalNode; __weak CCNode ...
分类:
其他好文 时间:
2015-01-30 21:01:52
阅读次数:
267
直接上代码了。。。在iOS7之后可以使用NSURLSession,但是考虑到兼顾iOS6还是使用NSURLConnection。@interface ViewController()
@property (nonatomic,strong) NSMutableData *receivedData;
@end
@implementation ViewController
- (void)vie...
分类:
移动开发 时间:
2015-01-29 10:25:23
阅读次数:
158
使用自带的push 返回 7.0以后支持手势滑动返回。1.封装一个单独的类来保持用户登录信息 新建一个类 在.h文件中添加Singleton.h头文件 定义属性 再到.m文件中定义 single_implementation(LoginUser) 和导入NSString+Helper...
分类:
其他好文 时间:
2015-01-27 17:57:30
阅读次数:
152
一、面向对象和封装 面向对象的三大特性:封装(成员变量)、继承和多态 在OC语言中,使用@interface和@implementation来处理类。 @interface就好像暴露在外面的时钟表面,像外界提供展示以及接口。@implementation就好像隐藏在时钟内部的构造实现,把具...
分类:
移动开发 时间:
2015-01-27 11:01:36
阅读次数:
229
This module is based on the socket.io real time implementation. It inherit Of the modules web_longpolling and web_socketioon bitbucket.How Install the...
分类:
其他好文 时间:
2015-01-27 11:01:08
阅读次数:
204