`
modun
  • 浏览: 149472 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论
文章列表
转自:http://www.cocoachina.com/iphonedev/sdk/2011/0626/2980.html    有时开发者会遇到这样的问题:程序突然Crash,出现EXC_BAD_ACCESS错误。但是不是每次都Crash,Debug时最终基本停在objc-msgsend这里,十分令人费解。     首先解释下EXC_BAD_ACCESS,当你向已经释放的对象发送消息时就会出现这种错误。     至于NSZombieEnabled,就是当设置NSZombieEnabled环境变量后,一个对象销毁时会被转化为_NSZombie,个人感 觉和线程的那几个状态有些相似, ...
UIImage *createGrayCopy(UIImage *source) { int width = source.size.width; int height = source.size.height; CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceGray(); CGContextRef context = CGBitmapContextCreate (nil, width, height, 8, // bits per compone ...
转载自:http://www.cocoachina.com/bbs/read.php?tid-12244.html   - (void)textViewDidBeginEditing:(UITextView *)textView{ NSArray *ws = [[UIApplication sharedApplication] windows]; for(UIView *w in ws){ NSArray *vs = [w subviews]; for(UIView *v in vs){ if([[NSS ...
转载自:http://www.cocoachina.com/bbs/read.php?tid-60598.html   NSFileHandle *fileHandle = [NSFileHandle fileHandleForReadingAtPath:filePath]; [fileHandle seekToFileOffset:1000]; NSData *data = [fileHandle readDataOfLength:2000];  
使用Spring Mvc 时一直遇到一个问题,就是当前台传入一个 Date类型的数据为空时,还进不了Controller 的Action就会抛出错误。 解决方法: @InitBinder public void InitBinder(WebDataBinder dataBinder) { dataBinder.registerCustomEditor(Date.class, new PropertyEditorSupport() { public void setAsText(String value) { try { ...
[DEBUG,FilterChainProxy,http-8080-1] Converted URL to lowercase, from: '/index.jsp'; to: '/index.jsp'[DEBUG,FilterChainProxy,http-8080-1] Candidate is: '/index.jsp'; pattern is /**; matched=true[DEBUG,FilterChainProxy,http-8080-1] /index.jsp at position 1 of 12 in additional filter chain; firing Filt ...
if it appear the "emulator: ERROR: unknown virtual device name", please modify your system enviroment,Add "ANDROID_SDK_HOME" system variable and the value is the folder where you put your ".android" folder, like mine "D:\My Documents".      
      在一个IP地址上运行多个基于域名的web站 点。 您的服务器有一个IP地址,而在DNS中有很多映射(CNAMES)到这个机器。 您而您想要在这个机器上运行www.example1.com和www.example2.org两个站点。 注意 在您Apache服务器的配置中创建一个虚拟主 机并不会自动在您的DNS中对主机名做相应更新。您
请求类型 Handler methods that are annotated with @RequestMapping can have very flexible signatures. They may have arguments of the following types, in arbitrary order (except for validation results, which need to follow right after the corresponding command object, if desired): Request or respon ...
最近因为一个项目需要使用seam,所以便去捣鼓了一下jboss,采用default启动时,报Port 8083 already in use,查了下端口占用情况,发现是被搜狗浏览器占用了(这丫从8081开始一直用到8084,真够黑的) 没办法,我经常用搜狗浏览器,它也不让我修改端口,于是只有去修改jboss的启动端口了,网上查了很多资料,都没有找到在哪里能修改8083端口。 最后在一个国外的网站上找到了,特意把它贴出来,免得自己和同僚将来找不着地方。 ${jboss_home}\server\default\conf\bindingservice.beans\META-INF\bindin ...
登陆google   public function googleLogin($email,$password){ $session = UserOper::openSession();//如果已经登陆,直接返回 if($session['googleAuth']){ $session->close(); return true; } $data = array( 'accountType' => 'GOOGLE', 'Email' => $email, ' ...
$criteria->join="inner join (config as b,area as c,position as d,app as e,config_has_area as f,config_has_position as g,user as a ) ON ( a.Config_id=b.id and b.id=f.Config_id and b.id=g.Config_id and f.Area_id=c.id and g.Position_id=d.id and a.Status=$status and d.id=$position)"; ...
 最近,因为项目需要,开始学习使用Yii框架来作为项目MVC框架,Yii 官方网站:http://www.yiiframework.com/ 今天主要讲一下Yii的国际化 --------------------------------------------------------------------------------------------------- Yii的国际化主要有三种,最常使用的是 基于PHP文件的国际化,这篇文章主要说明的也是此国际化方式   model的国际化: 在Yii 1.0.10没有出现之前,model的国际化和其他如 controller,wid ...
---------------------pre---------------------1.下载光盘版BT4.iso,copy其中的boot和bt4到U盘,windows下运行bootinst.bat安装到U盘。VM版的BT4可能对集成的无线网卡支 持不太好,USB无线网卡则支持得很好。 或者用硬盘启动方式:下载光盘版BT4.iso,解压其中的boot和bt4到D盘根目录,下载grub4dos,解压其中的grldr、menu.lst、 grldr.mbr,放C盘根目录下    编辑bcd:    bcdedit  /create  /d "Grub"  /applic ...
第一次遇到这个问题,当时是用flex的remoteObject持久化一个对象时出现的情况,最后发现是 flex 的 vo 出了问题 private var _regionName:String;   我的getter方法写成了这样 public function get regionName():String{ return regionName; }   这样就会导致程序递归调用此方法,并最终造成堆栈溢出,修改成下面那样就可以啦 public function get regionName():String{ return _region ...
Global site tag (gtag.js) - Google Analytics