***********#import "HMViewController.h"@interface HMViewController () @property (weak, nonatomic) IBOutlet UIImageView *imageView;@end@implementation ...
分类:
移动开发 时间:
2015-09-09 17:35:25
阅读次数:
156
**********延时执行#import "HMViewController.h"@interface HMViewController ()@end@implementation HMViewController- (void)viewDidLoad{ [super viewDidLoad...
分类:
移动开发 时间:
2015-09-09 17:16:56
阅读次数:
117
一、面向对象和封装面向对象的三大特性:封装(成员变量)、继承和多态在OC语言中,使用@interface和@implementation来处理类。@interface就好像暴露在外面的时钟表面,像外界提供展示以及接口。@implementation就好像隐藏在时钟内部的构造实现,把具体的实现封装了起...
分类:
其他好文 时间:
2015-09-08 23:21:29
阅读次数:
157
LSTM implementation explainedPrefaceFor a long time I’ve been looking for a good tutorial on implementing LSTM networks. They seemed to be complicated...
分类:
其他好文 时间:
2015-09-08 19:56:55
阅读次数:
636
代码介绍:首先开启一个线程请求网络图片,图片下载成功之后保存到相册中。代码简单易懂。@implementation ViewController{ NSData *data;}- (void)viewDidLoad { [super viewDidLoad]; UIImageView *i...
分类:
其他好文 时间:
2015-09-08 18:35:15
阅读次数:
167
***#import "HMViewController.h"#import @interface HMViewController ()@end@implementation HMViewControllervoid *run(void *data){ for (int i = 0; i<1...
分类:
移动开发 时间:
2015-09-08 18:31:09
阅读次数:
137
****#import "HMViewController.h"@interface HMViewController ()@end@implementation HMViewController- (void)viewDidLoad{ [super viewDidLoad]; // D...
分类:
移动开发 时间:
2015-09-08 18:21:08
阅读次数:
116
****#import "HMViewController.h"@interface HMViewController ()@property (weak, nonatomic) IBOutlet UIImageView *imageView;@end@implementation HMViewCo...
分类:
移动开发 时间:
2015-09-08 18:11:55
阅读次数:
131
#import "DetailViewController.h"#import #import "DBManager.h"@interface DetailViewController (){}@end@implementation DetailViewController- (id)initWit...
分类:
其他好文 时间:
2015-09-07 12:29:41
阅读次数:
131
#import "DBManager.h"#import "FMDatabase.h"@implementation DBManager{ FMDatabase *_fmdb; NSLock *_lock;}+(DBManager *)shareManager{ static DBManager *...
分类:
数据库 时间:
2015-09-07 00:24:11
阅读次数:
329