原文链接/* ------------------------------------------------------------------------- *//* * An implementation of JNI methods in com.vladium.utils.SystemIn...
分类:
编程语言 时间:
2015-10-20 14:02:13
阅读次数:
177
app安全很重要,MD5保障// Md5.h#import @interface Md5 : NSObject+ (NSString *)md5:(NSString *)inPutText;@end//// Md5.m#import "Md5.h"#import @implementation Md...
分类:
其他好文 时间:
2015-10-20 14:00:19
阅读次数:
203
iOS开发笔记-两种单例模式的写法单例模式是开发中最常用的写法之一,iOS的单例模式有两种官方写法,如下:不使用GCD#import "ServiceManager.h"static ServiceManager *defaultManager;@implementation ServiceMana...
分类:
移动开发 时间:
2015-10-20 11:50:46
阅读次数:
136
#import "ViewController.h"#import "HomeViewController.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad { [super vi....
分类:
其他好文 时间:
2015-10-16 06:20:56
阅读次数:
166
A TRIP DOWN MEMORY LANE@interface Kraken : NSObject@end@implementation Kraken+ (instancetype)sharedInstance { static Kraken *sharedInstance = nil; ...
分类:
其他好文 时间:
2015-10-15 17:47:31
阅读次数:
153
1 #import "AppDelegate.h" 2 3 @interface AppDelegate () 4 5 @end 6 7 @implementation AppDelegate 8 9 -(void)dealloc{10 11 [_window releas...
分类:
其他好文 时间:
2015-10-14 23:37:41
阅读次数:
169
看代码: 1 #import "MainViewController.h" 2 #import "Student.h" 3 4 @interface MainViewController () 5 6 @end 7 8 @implementation MainViewController 9 ...
分类:
其他好文 时间:
2015-10-14 23:16:19
阅读次数:
189
#import "RootView.h"@implementation RootView- (instancetype)initWithFrame:(CGRect)frame{ self = [super initWithFrame:frame]; if (self) { [self p_setup...
分类:
其他好文 时间:
2015-10-14 21:18:48
阅读次数:
165
//
//??NSDictionary+LOG.m
//??2015年?CoderWJ?(byWJ)
//
#import?<Foundation/Foundation.h>
@implementation?NSDictionary?(LOG)
-?(NSString?*)descriptionWithLocale:(id)locale
{
????/...
分类:
编程语言 时间:
2015-10-14 09:11:53
阅读次数:
213
在ViewController.m中。@interface ViewController ()@property(nonatomic, strong) UIView * MyView;@end@implementation ViewController- (void)viewDidLoad { [s...
分类:
其他好文 时间:
2015-10-13 22:57:16
阅读次数:
312