#import
"LoadInternetImageViewController.h"@interface LoadInternetImageViewController
()@property (weak, nonatomic) IBOutlet UIImageView *imageView;@e...
分类:
其他好文 时间:
2014-05-30 20:28:32
阅读次数:
347
起:C++98标准加入auto_ptr,即智能指针,C++11加入shared_ptr和weak_ptr两种智能指针,先从auto_ptr的定义学习一下auto_ptr的用法。template class
auto_ptr { // wrap an object pointer to ensure....
分类:
编程语言 时间:
2014-05-27 16:13:40
阅读次数:
440
@interface K3ViewController :
UIViewController@end#import "K3ViewController.h"@interface K3ViewController
()@property (weak, nonatomic) IBOutlet UILab...
分类:
移动开发 时间:
2014-05-26 19:15:17
阅读次数:
259
1.@property的参数说明========================================ARC是苹果为了简化程序员对内存的管理,推出的一套内存管理机制使用ARC机制,对象的申请和释放工作会在运行时,由编译器自动在代码中添加retain和release1>
strong:强指针...
分类:
移动开发 时间:
2014-05-26 13:48:07
阅读次数:
315
* weak(assign) :代理\UI控件* strong(retain)
:其他对象(除代理\UI控件\字符串以外的对象)* copy :字符串,block* assign
:非对象类型(基本数据类型int\float\BOOL\枚举\结构体)-UI控件也不一定是用weak的,要根据具体情况具...
分类:
其他好文 时间:
2014-05-26 13:11:02
阅读次数:
236
一、按钮点击事件处理方法 - (IBAction)
tapHelloButton:(id)sender;二、获取文本框控件@property (weak, nonatomic) IBOutlet
UITextField *userNameText;三、获取文本标签控件@property (weak,...
分类:
移动开发 时间:
2014-05-21 04:22:18
阅读次数:
336
#import "mainController.h"@interface mainController
()//分页控件@property(nonatomic,weak)UIPageControl
*pageController;//滚动视图@property(nonatomic,weak)UISc...
分类:
其他好文 时间:
2014-05-20 08:49:13
阅读次数:
303
参考文献:iOSARC完全指南提示本文中所说的"实例变量"即是"成员变量""局部变量"即是"本地变量"一、简介ARC是自iOS5之后增加的新特性完全消除了手动管理内存的烦琐编译器会自动在适当的地方插入适当的retain、release、autorelease语句。你不再需要担心内存管理,因为编译器为你处..
分类:
其他好文 时间:
2014-05-15 00:55:48
阅读次数:
348
字符串 string block ---- copyFoundtion对象用 (array,
NSObject) ---- StrongUI控件 代理 ---- weak基本数据类型 ---- ...
分类:
其他好文 时间:
2014-05-13 17:20:23
阅读次数:
207
循环引用:引用计数是一种便利的内存管理机制,但它有一个很大的缺点,那就是不能管理循环引用的对象。一个简单的例子如下:#include#include#include#includeclassparent;classchildren;typedefboost::shared_ptr
parent_pt...
分类:
其他好文 时间:
2014-05-09 13:01:22
阅读次数:
326