// // 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)公式推导和实现 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
// // ViewController.m // 02-UILabel的使用 // // UILabel显示一段文字。 #import "ViewController.h" @interface ViewController () @end @implementation ViewControll... ...
分类:
移动开发 时间:
2017-08-29 14:18:54
阅读次数:
180
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
// 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
// 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
// // ViewController.m // UIPickerViewAll #import "ViewController.h" @interface ViewController () @end @implementation ViewController /* UIPickView控件常 ...
分类:
移动开发 时间:
2017-08-25 12:31:02
阅读次数:
252
Extension 可以认为是一种匿名的 Category, Extension 与 Category 有如下几点显著的区别: 1.使用 Extension 必须有原有类的源码 2.Extension 声明的方法必须在类的主 @implementation 区间内实现,可以避免使用有名 Catego ...
分类:
其他好文 时间:
2017-08-23 23:07:40
阅读次数:
235
// 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
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