码迷,mamicode.com
首页 >  
搜索关键字:implementation    ( 1803个结果
随笔待整理
#import "UINavigationBar+ChangeColor.h" @implementation UINavigationBar (ChangeColor) - (void)start{ UIImageView *shawImage = [self findNavLineImageOn ...
分类:其他好文   时间:2018-07-12 17:57:54    阅读次数:142
iOS - OC - JSON 解析 - NSJSONSerialization
1 #import "ViewController.h" 2 3 @interface ViewController () 4 5 @end 6 7 @implementation ViewController 8 9 -(void)touchesBegan:(NSSet *)touches wit... ...
分类:移动开发   时间:2018-07-11 14:43:36    阅读次数:264
iOS -- 单例类
#import @interface DanLi : NSObject @end @implementation DanLi +(instancetype)shareDanli{ static DanLi * dan; static dispatch_once_t onceToken; dispat... ...
分类:移动开发   时间:2018-07-10 23:36:56    阅读次数:248
OC -网络请求 - NSURLConnection - POST
1 #import "ViewController.h" 2 3 @interface ViewController () 4 5 @end 6 7 @implementation ViewController 8 -(void)touchesBegan:(NSSet *)touches withE... ...
分类:Web程序   时间:2018-07-10 21:39:04    阅读次数:215
ArrayList源码分析
ArrayList分析   JDK api对ArrayList是这样介绍的: Resizable array implementation of the List interface. Implements all optional list operations, and pe ...
分类:其他好文   时间:2018-07-07 17:47:07    阅读次数:140
How does Java HashMap or LinkedHahsMap handles collisions
Prior to Java 8, HashMap and all other hash table based Map implementation classes in Java handle collision by chaining, i.e. they use linked list to ...
分类:编程语言   时间:2018-07-07 10:34:54    阅读次数:226
注解工具ButterKnife用法和注意点
// implementation 'com.android.support:appcompat-v7:28.0.0-Beta1' // implementation 'com.android.support:support-v4:28.2.0'// implementation 'com.andr ...
分类:其他好文   时间:2018-07-05 12:14:18    阅读次数:166
Runtime(运行时)003-动态添加方法
class_addMethod #import "Person.h" #import <objc/message.h> @implementation Person /* OC的方法调用,会传递两个隐式参数!给IMP(方法实现)!! objc_msgSend(self,_cmd); id self ...
分类:其他好文   时间:2018-06-29 11:08:40    阅读次数:180
UML图基本类型
use case model用例模型 analysiss model分析模型 design model设计模型 implementation model实现模型 deployment model部署模型 UML图的分类 静态模型(static model) 动态模型(dynamic model) 静 ...
分类:其他好文   时间:2018-06-28 15:23:52    阅读次数:231
跟踪记录线上常见崩溃
@implementation NSArray (LXZArray) + (void)load { [super load]; Method fromMethod = class_getInstanceMethod(objc_getClass("__NSArrayI"), @selector(obj ...
分类:其他好文   时间:2018-06-24 11:47:17    阅读次数:189
1803条   上一页 1 ... 22 23 24 25 26 ... 181 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!