[支持main方法测试]ResourceBundle resourceBundle =
ResourceBundle.getBundle("service"); String url =
resourceBundle.getString("serviceid"); System.out.prin.....
分类:
其他好文 时间:
2014-06-12 00:17:57
阅读次数:
201
@property (nonatomic) dispatch_semaphore_t
semaphore;self.semaphore = dispatch_semaphore_create([self.progressViews
count]);dispatch_semaphore_wait(se...
分类:
其他好文 时间:
2014-06-11 12:51:06
阅读次数:
264
Incomputer science, aheapis a
specializedtree-baseddata structurethat satisfies theheap property:If A is a
parentnodeof B then the key of node A is or...
分类:
其他好文 时间:
2014-06-11 09:23:53
阅读次数:
376
@interface Person : NSObject@property
(noatonmic,copy) NSString *
name;@end一个person类,name是person得成员变量如果在一个类中写入person为成员变量self.person.name =
@"zhangsan...
分类:
移动开发 时间:
2014-06-11 07:28:01
阅读次数:
294
ios程序启动过程
UIApplication:1.每一个应用都有自己的UIApplication对象,而且是单例的,通过[UIApplication
sharedApplication]可以获得这个单例对象.2.UIApplication的常用属性:@property(nonatomic) ...
分类:
移动开发 时间:
2014-06-08 22:52:23
阅读次数:
411
1、案例视图,如下图2、代码TextKit01ViewController.h#import
@interface TextKit01ViewController : UIViewController@property
(nonatomic,strong) IBOutlet UITextView *...
分类:
移动开发 时间:
2014-06-08 19:03:04
阅读次数:
382
1、案例如图2、代码TextKit02ViewController.h#import
@interface TextKit02ViewController : UIViewController@property
(nonatomic,strong) IBOutlet UITextView *text...
分类:
移动开发 时间:
2014-06-08 18:53:35
阅读次数:
558
一般来说在一个类中 成员变量是会有setter 跟getter方法的。
如果每一个成员变量的setter 跟getter方法都要手写出来的话 很麻烦 很耗时
而且 大部分setter 跟getter方法内容都是简单的赋值 跟return
所以 有些成员变量 没必要手写setter 跟getter方法
@property int age;
这句话代表着 声明setAge:(in...
分类:
其他好文 时间:
2014-06-08 16:33:15
阅读次数:
192
在ios7以前,我们开发二维码扫描,或者生产都需要借助第三方的开源库进行开发。
然后升级到ios7时,在passbook中苹果自带二维码扫描功能,而且扫描速度非常快,秒杀一切第三方开源库。所以,我们做二维码的开发选用自带sdk优先级应该高于其他的库。
说到二维码的开发,我们需要用到这两个对象。如下。。
@property (nonatomic,
strong) AVCaptureS...
分类:
移动开发 时间:
2014-06-08 09:04:05
阅读次数:
232
1,循环参照A有个属性参照B,B有个属性参照A,如果都是strong参照的话,两个对象都无法释放。这种问题常发生于把delegate声明为strong属性了。例,@interface
SampleViewController@property (nonatomic, strong) SampleCl...
分类:
其他好文 时间:
2014-06-07 23:40:44
阅读次数:
366