码迷,mamicode.com
首页 >  
搜索关键字:implementation    ( 1803个结果
System.DateUtils 2. IsInLeapYear 判断是否是闰年
编译版本:Delphi XE7function IsInLeapYear(const AValue: TDateTime): Boolean;implementation// 判断是否是闰年function IsInLeapYear(const AValue: TDateTime): Boolean...
分类:其他好文   时间:2015-08-26 11:57:58    阅读次数:164
草稿-九宫格
#import "AppDelegate.h"@interface AppDelegate ()@property(nonatomic,strong)NSArray*app;@end@implementation AppDelegate-(NSArray *)app{ if (_app == ni....
分类:其他好文   时间:2015-08-25 21:26:34    阅读次数:165
ui-label button
#import "AppDelegate.h"@interface AppDelegate ()@end@implementation AppDelegate{ //全局变量 UILabel*lablel;}-(void)dealloc{ self.window=nil; [...
分类:其他好文   时间:2015-08-25 21:24:53    阅读次数:142
分类(Category) 类扩展(Class Extensions)
使用Category需要注意的点:(1) Category的方法不一定非要在@implementation中实现,也可以在其他位置实现,但是当调用Category的方法时,依据继承树没有找到该方法的实现,程序则会崩溃。(2) Category理论上不能添加变量,但是可以使用@dynamic来弥补这种...
分类:其他好文   时间:2015-08-25 13:55:25    阅读次数:199
iOS WKWebView 使用笔记
首先添加Webkit框架导入#import #import @interface WebBrowerViewController ()@property(nonatomic,strong) WKWebView *webView;@end@implementation WebBrowerViewC.....
分类:移动开发   时间:2015-08-25 13:31:04    阅读次数:1650
多线程之NSOperation
#import "ViewController.h"#define kURL @"http://avatar.csdn.net/2/C/D/1_totogo2010.jpg"@interface ViewController ()@end@implementation ViewController-...
分类:编程语言   时间:2015-08-25 13:30:29    阅读次数:202
Objective-C( 语法一)
点语法点语法的本质是方法调用成员变量的作用域@public : 在任何地方都能直接访问对象的成员变量@private : 只能在当前类的对象方法中直接访问(@implementation中默认是@private) 子类如果想访问通过setter getter方法访问@protected :...
分类:其他好文   时间:2015-08-21 22:56:00    阅读次数:147
获取Delphi所有类的类信息
Delphi遍历进程中所有Class的TypeInfo,即便是在implementation中的class或者其他 class的private的子class. 一般普通EXE中的TypeInfo存放在PAGE_EXECUTE_*的内存中,而BPL则存放在PAGE_READ_WRITE的内存中...
分类:Windows程序   时间:2015-08-21 22:55:03    阅读次数:225
NDK Caused by: java.lang.UnsatisfiedLinkError:
Caused by: java.lang.UnsatisfiedLinkError: No implementation found for java.lang.String? 如果你的文件是cpp文件, 你需要使用 extern "C" { void foo(); } 否则java连接不到 实现...
分类:编程语言   时间:2015-08-20 21:03:42    阅读次数:362
js和java MD5加密
项目中用到js MD5加密和后台java MD5加密,刚开始加密后两个不一致,网上找了好久终于找到一个啦,记下来:md5.js/* * A JavaScript implementation of the RSA Data Security, Inc. MD5 Message * Digest Al...
分类:编程语言   时间:2015-08-20 14:55:19    阅读次数:189
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!