错误原因:
exc_bad_access(code=1, address=0x789870)野指针错误,主要的原因是,当某个对象被完全释放,也就是retainCount,引用计数为0后。再去通过该对象去调用其它的方法就会出现野指针错误。
例如:
Person *jerry = [[Person alloc]init]; // retainCount引用计数为1
[jerry eat];...
分类:
移动开发 时间:
2014-07-22 23:05:16
阅读次数:
372
//单独动态创建一个控件; procedure TForm1.BitBtn1Click(Sender:
TObject);var myPanel : TPanel;begin myPanel :=
TPanel.Create(nil);//关于Create(nil)和Create(Self)的区别....
分类:
其他好文 时间:
2014-05-05 21:50:24
阅读次数:
291
技巧三: 在chart的上曲线上的点
鼠标放上去,显示此点的横纵坐标代码如下:procedure TForm1.pntsrsSeries1MouseEnter(Sender:
TObject);vari:integer;x1,y1:string;begin pntsrsSeries1.Curso.....
分类:
其他好文 时间:
2014-05-03 22:17:19
阅读次数:
231
由于WiFi 的Mac address
是一个被动咨询。一般在开机后,不会主动上到的系统里。要等待WiFi硬件启动后,才会把有关Mac address资料记载入系统去。
所以一般android系统获取Mac address时候会出现以下几种情况: 1、在WiFi打开的时候可以获取到Mac地址 2、....
分类:
移动开发 时间:
2014-05-01 21:27:19
阅读次数:
651
一.asp.net1.点击Repeater中的LinkButton,获取当中label中的值:
Label lblName = ((LinkButton )sender).Parent.FindControl("lblName") as Label
;或者在gridView中,添加按钮列Button...
分类:
其他好文 时间:
2014-05-01 21:07:18
阅读次数:
356
The server network address “TCP://myserverAddress:50221″ cannot be reached or does not exist.
Check the network address name and that the ports for the local and remote endpoints are operational.
(Microsoft SQL Server, Error: 1418)...
分类:
Web程序 时间:
2014-05-01 18:35:53
阅读次数:
665
group.Closing += (sender, e) => { try { Code
here } ...
ABAP中FORM参数的传递有以下几种方式。 1.引用传递(CALL BY REFERENCE)
传递参数时将参数的地址(ADDRESS)传至子程序中,也就是子程序中的参数变量与外部程序的参数变量共享地址内的值。又叫CALL BY
ADDRESS,若子程序中的参数变量的值发生了改变,那么,外...
分类:
其他好文 时间:
2014-05-01 08:39:35
阅读次数:
339
1. Download Kernel source
Study:
1. Please refer to the AOSP official kernel download address:
http://source.android.com/source/building-kernels.html
2. goto https://android.g...
分类:
移动开发 时间:
2014-04-29 13:13:20
阅读次数:
679
为了避免目标端nrpe进程监控多个接口而造成的安全漏洞。有必要固定服务端的地址,对nrpe.cfg配置中,有下列一行介绍
#SERVER ADDRESS
# Address that nrpe should bind to in case there are more than one interface
# and you do not want nrpe to bind on all in...
分类:
其他好文 时间:
2014-04-27 22:36:17
阅读次数:
454