#import "UINavigationBar+ChangeColor.h" @implementation UINavigationBar (ChangeColor) - (void)start{ UIImageView *shawImage = [self findNavLineImageOn ...
分类:
其他好文 时间:
2018-07-12 17:57:54
阅读次数:
142
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
#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
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分析 JDK api对ArrayList是这样介绍的: Resizable array implementation of the List interface. Implements all optional list operations, and pe ...
分类:
其他好文 时间:
2018-07-07 17:47:07
阅读次数:
140
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
// 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
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
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