UITableView控件1,基本使用(required)UITableView有两种样式:grouped/plain 组/单行UITableView需要?一个数据源(dataSource)来显示数据UITableView会向数据源查询一共有多少行数据以及每?行显示什么数据等没有设置数据源的UITa...
分类:
其他好文 时间:
2014-11-25 23:21:09
阅读次数:
293
Accessrestriction:ThetypeBASE64Encoderisnotaccessibleduetorestrict在Eclipse中编写Java代码时,用到了BASE64Decoder,importsun.misc.BASE64Decoder;可是Eclipse提示:Accessrestriction:ThetypeBASE64DecoderisnotaccessibleduetorestrictiononrequiredlibraryC:\Programf..
分类:
数据库 时间:
2014-11-25 19:02:48
阅读次数:
201
在Infopath中使用REST Web Service出现如下错误:XML data that is required for this form to function correctly cannot be found.解决方案:Specify host names (Preferred me...
分类:
Web程序 时间:
2014-11-25 14:25:00
阅读次数:
208
动态内存的堆区/* 堆区共用体定义 */typedef union { /* 可以以4字节来访问堆区,也可以以1个字节来访问 */ int aintHeap[GUI_ALLOC_SIZE / 4]; /* required for proper alignement */ U8...
分类:
其他好文 时间:
2014-11-25 12:19:28
阅读次数:
207
Given two words word1 and word2, find the minimum number of steps required to convert word1 to word2. (each operation is counted as 1 step.)You have t...
分类:
其他好文 时间:
2014-11-25 10:46:27
阅读次数:
196
在真机测试的时候往往会突然出现这样一个错误,code signing is required for product type 'Application' in SDK 'iOS 7.0' ,就是说代码签名证书不对劲。 解决方案,1.选择工程->Build Settings -> Code Sign...
分类:
移动开发 时间:
2014-11-25 10:41:51
阅读次数:
152
A.概念1.用来声明方法(不能声明成员变量)2.只要某个类遵守了这个协议,相当于拥有了协议中得所有方法的声明3.属性(1)@required:默认,要求实现,不实现就会发出警告(2)@optional:不要求实现————MyProtocol.h-------------- 1 @protocol M...
分类:
其他好文 时间:
2014-11-24 20:28:26
阅读次数:
147
今天编译一个动态库,里面有用C编写的源文件,为了调试自己加了一些简单的信息输出语句,但是总是编译不过,最后精简到只是定义一个函数的局部变量也会编译失败,最后Google了才明白,vs在编译C代码的时候会有一些特殊的check,其中一种就是需要函数定义局部变量要在开头。举例如下:错误的代码void f...
分类:
其他好文 时间:
2014-11-24 14:59:40
阅读次数:
257
Given an unsorted integer array, find the first missing positive integer.For example,Given[1,2,0]return3,and[3,4,-1,1]return2.Your algorithm should ru...
分类:
其他好文 时间:
2014-11-24 13:30:40
阅读次数:
166
问题描述:
Given an unsorted integer array, find the first missing positive integer.
For example,
Given [1,2,0] return 3,
and [3,4,-1,1] return 2.
Your algorithm should run in O(n) time and uses con...
分类:
其他好文 时间:
2014-11-23 16:02:15
阅读次数:
211