码迷,mamicode.com
首页 >  
搜索关键字:implementation    ( 1803个结果
ios11--UIButton
// // ViewController.m // 02-UIButton(在代码中使用) // #import "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)v... ...
分类:移动开发   时间:2017-08-29 18:09:24    阅读次数:208
转:RNN(Recurrent Neural Networks)
RNN(Recurrent Neural Networks)公式推导和实现 http://x-algo.cn/index.php/2016/04/25/rnn-recurrent-neural-networks-derivation-and-implementation/ 2016-04-25 分类 ...
分类:Web程序   时间:2017-08-29 14:32:24    阅读次数:203
ios6--UILabel
// // ViewController.m // 02-UILabel的使用 // // UILabel显示一段文字。 #import "ViewController.h" @interface ViewController () @end @implementation ViewControll... ...
分类:移动开发   时间:2017-08-29 14:18:54    阅读次数:180
RNN(Recurrent Neural Networks)公式推导和实现
RNN(Recurrent Neural Networks)公式推导和实现 http://x-algo.cn/index.php/2016/04/25/rnn-recurrent-neural-networks-derivation-and-implementation/ 2016-04-25 分类 ...
分类:Web程序   时间:2017-08-29 12:49:54    阅读次数:353
oc72--NSArray排序
// Person.h #import @interface Person : NSObject @property (nonatomic, assign) int age; @end // Person.m #import "Person.h" @implementation Person - (... ...
分类:编程语言   时间:2017-08-27 17:03:48    阅读次数:154
oc55--ARC单个对象的内存管理
// Person.h #import @interface Person : NSObject @end // Person.m #import "Person.h" @implementation Person - (void)dealloc { NSLog(@"%s", __func__); ... ...
分类:其他好文   时间:2017-08-26 15:08:46    阅读次数:133
iOS开发UIPickerView常用属性方法
// // ViewController.m // UIPickerViewAll #import "ViewController.h" @interface ViewController () @end @implementation ViewController /* UIPickView控件常 ...
分类:移动开发   时间:2017-08-25 12:31:02    阅读次数:252
Extension
Extension 可以认为是一种匿名的 Category, Extension 与 Category 有如下几点显著的区别: 1.使用 Extension 必须有原有类的源码 2.Extension 声明的方法必须在类的主 @implementation 区间内实现,可以避免使用有名 Catego ...
分类:其他好文   时间:2017-08-23 23:07:40    阅读次数:235
oc44--多对象内存管理
// Room.h #import @interface Room : NSObject @property int no;// 房间号 @end // Room.m #import "Room.h" @implementation Room - (void)dealloc { NSLog(@"%s... ...
分类:其他好文   时间:2017-08-23 18:17:23    阅读次数:151
str 转 md5
1 @interface NSString (MD5) 2 3 + (NSString *)md5To32bit:(NSString *)str; 4 5 @end 6 7 8 @implementation NSString (MD5) 9 10 + (NSString *)md5To32bit:... ...
分类:其他好文   时间:2017-08-23 11:53:10    阅读次数:194
1803条   上一页 1 ... 33 34 35 36 37 ... 181 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!