IMP:通用的函数指针 /// A pointer to the function of a method implementation. #if !OBJC_OLD_DISPATCH_PROTOTYPES typedef void (*IMP)(void /* id, SEL, ... */ ); ...
分类:
其他好文 时间:
2017-07-07 18:16:58
阅读次数:
228
//自定义TableviewCell #import "OrderViewCell.h" #import "Masonry.h" @implementation OrderViewCell -(id)initWithStyle:(UITableViewCellStyle)style reuseIde ...
分类:
其他好文 时间:
2017-07-04 13:16:00
阅读次数:
106
解决方法: 1.检查native c code的定义: 2.检查是否.so是否被加载到系统中: adb shell ls -l /data/data/com.example.something/lib/ 3. 假设lib为libtest.so 复制该文件到libs目录下,代码中调用: static ...
分类:
移动开发 时间:
2017-07-02 14:27:23
阅读次数:
183
前言 常用的几何变换中旋转是较为复杂的一种,最近看《Physically Based Rendering, Second Edition: From Theory To Implementation》一书涉及绕任意轴旋转的实现,也给出了大体思路,但具体的推导过程及最后的旋转矩阵并未直接地给出,故根据 ...
分类:
其他好文 时间:
2017-07-02 14:21:56
阅读次数:
208
Excel数据导出 技术:Apache POI 是用Java编写的免费开源的跨平台的 Java API,Apache POI提供API给Java程式对Microsoft Office格式档案读和写的功能。POI为“Poor Obfuscation Implementation”的首字母缩写,意为“可 ...
分类:
编程语言 时间:
2017-06-30 14:09:15
阅读次数:
207
1、HTML 2、Blob.js /* Blob.js * A Blob implementation. * 2014-07-24 * * By Eli Grey, http://eligrey.com * By Devin Samarin, https://github.com/dsamarin ...
分类:
其他好文 时间:
2017-06-30 11:04:37
阅读次数:
386
在利用NDK编译Cpp执行时,出现了No implementation found for native Lcom等错误,调试好久,才发现 XXX.h和XXX.cpp。在XXX.cpp里#include XXX.h。竟然出现了No implementation found for native Lc ...
分类:
移动开发 时间:
2017-06-29 19:16:52
阅读次数:
225
同java一样: 在为对象数组进行排序时,比较器的作用非常明显,首先来讲解Comparable接口。 让需要进行排序的对象实现Comparable接口,重写其中的compareTo(T o)方法 The implementation of this method should return the ...
分类:
编程语言 时间:
2017-06-29 15:27:29
阅读次数:
170
@implementation NSArray (Log) - (NSString *)descriptionWithLocale:(id)locale indent:(NSUInteger)level { NSMutableString *mStr = [NSMutableString strin... ...
分类:
编程语言 时间:
2017-06-29 12:37:17
阅读次数:
113
以前一直使用HashMap,今天学习一下LinkedHashMap JavaDoc 注解: Hash table and linked list implementation of the Map interface, with predictable iteration order. This i ...
分类:
编程语言 时间:
2017-06-26 12:39:35
阅读次数:
154