//注册键盘出现的通知 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyb…
iOS下的具体实现方式如下 新建一个类 继承 #import <Foundation/Foundation.h> #import <CommonCrypto/Co…
//需要手动调用 registerForKeyboardNotifications 方法,其他两个会自动调用,弹出的键盘高 216(输入英文时候),ios 5 系统的 @imple…
一.不可变字符串 1.追加字符串: [newStr stringByAppendingFormat:@"%C",c]; 2.字符串分割方法: [NSString component…
UIView *view = [UIView new]; [view performSelector:@selector(removeFromSuperview) withObje…
#import "ViewController.h" #import <StoreKit/StoreKit.h> @interface ViewController (…
//返回到上一界面 -(void)customBackBtnPressed:(id)send{ UIAlertView *alertView= [[UIAlertView allo…
苹果是非常看重产品的安全性的,所以给用户设计了一套复杂的安全机制。这让喜爱自由,崇尚一切开放的程序员们极度不爽,于是越狱就成了…
//这个方法写在.h文件里面方便调用 +(NSString *)getMessageDateStringFromTimeInterval:(NSTimeInterval)TimeI…
前提,导入AFNetworking框架 关于修改AFN源码:通常序列化时做对text/plan等的支持时,可以一劳永逸的修改源代码,在acceptableContentTypes中…
self.tableView.header = [JCHeader headerWithDefaultIndex:0 ballColor:nil normalViews:@[JCN…
iOS类别(Category)与扩展(Extension) 创建