码迷,mamicode.com
首页 >  
搜索关键字:implementation    ( 1803个结果
IOS第二天多线程-05NSOperationQueue 暂停,和恢复队列任务
***********#import "HMViewController.h"@interface HMViewController () @property (weak, nonatomic) IBOutlet UIImageView *imageView;@end@implementation ...
分类:移动开发   时间:2015-09-09 17:35:25    阅读次数:156
IOS第二天多线程-01-延时执行
**********延时执行#import "HMViewController.h"@interface HMViewController ()@end@implementation HMViewController- (void)viewDidLoad{ [super viewDidLoad...
分类:移动开发   时间:2015-09-09 17:16:56    阅读次数:117
OC面向对象—封装
一、面向对象和封装面向对象的三大特性:封装(成员变量)、继承和多态在OC语言中,使用@interface和@implementation来处理类。@interface就好像暴露在外面的时钟表面,像外界提供展示以及接口。@implementation就好像隐藏在时钟内部的构造实现,把具体的实现封装了起...
分类:其他好文   时间:2015-09-08 23:21:29    阅读次数:157
LSTM implementation explained
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
IOS第一天多线程-01pthread
***#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
IOS第二天多线程-02NSThread基本使用
****#import "HMViewController.h"@interface HMViewController ()@end@implementation HMViewController- (void)viewDidLoad{ [super viewDidLoad]; // D...
分类:移动开发   时间:2015-09-08 18:21:08    阅读次数:116
IOS第二天多线程-03线程间通信
****#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
1803条   上一页 1 ... 95 96 97 98 99 ... 181 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!