码迷,mamicode.com
首页 >  
搜索关键字:init failed    ( 33737个结果
flex 圆形布局
xmlns:s="library://ns.adobe.com/flex/spark"    xmlns:mx="library://ns.adobe.com/flex/mx" creationComplete="init(event)"> import mx.core.IVisualElement; import mx.core.IVisualElementContai...
分类:其他好文   时间:2014-07-22 23:05:55    阅读次数:338
错误提示:Apple Mach-O Linker Error
错误提示:Apple Mach-O Linker Error 红色提示: Command /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/clang failed with exit code 1 这种提示往往让我们不知道哪儿出错了,给出的提示不是很明显。 发生这种错误的原因通常是因为两个子工程中存在同名类造...
分类:移动开发   时间:2014-07-22 23:05:33    阅读次数:469
ios开发笔记----exc_bad_access(code=1, address=0x789870)野指针错误,假死debug状态
错误原因: 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
Emacs 使用android模式
首先用package system安装android-mode, 然后编辑~/.emacs.d/init.el文件,添加下面几行:(require 'android-mode) (setq android-mode-sdk-dir "/opt/android-sdk-linux/")现在重新启动emacs,然后M-x 中运行命令android-start-emulator此时会提示输入Androi...
分类:移动开发   时间:2014-05-02 22:49:40    阅读次数:561
Object C (2) --- NSString的创建
NSString *str1 = @"a string"; NSString *str2 = [[NSString alloc] init]; str2 = @"a string"; [str2 release]; NSString *str3 = [[NSString...
分类:其他好文   时间:2014-05-02 09:04:17    阅读次数:185
Struts2实现文件上传报错(三)
1、具体错误如下 usage: java org.apache.catalina.startup.Catalina [ -config {pathname} ] [ -nonaming ] { -help | start | stop } 2014-5-1 23:17:23 org.apache.catalina.core.AprLifecycleListener init 信息: Loade...
分类:其他好文   时间:2014-05-02 05:12:30    阅读次数:257
无人值守安装RHEL6
无人值守安装RHEL6一、首先安装相关的软件yuminstallvsftpyuminstalltftpyuminstalltftp-serveryuminstalldhcpyuminstallsyslinux二、配置相关服务1.vim/etc/xinetd.d/tftp/etc/init.d/xinetdstart开启tftp服务2.vim/etc/dhcp/dhcpd.conf建立dhcpd.conf模版可以用上面的那个命..
分类:其他好文   时间:2014-05-02 03:21:53    阅读次数:357
Struts2实现文件上传报错(二)
1、具体报错如下 usage: java org.apache.catalina.startup.Catalina [ -config {pathname} ] [ -nonaming ] { -help | start | stop } 2014-5-1 23:10:21 org.apache.catalina.core.AprLifecycleListener init 信息: Loade...
分类:其他好文   时间:2014-05-02 02:17:00    阅读次数:353
iOS国际化时遇到的错误:read failed: the data couldn't be read because it isn't in the correct format.
其实这个错误很简单,就是当我们在国际化的时候,写key,写着写着就忘了加 ";" 所以查看一下自己的Localization文件就可以了...
分类:移动开发   时间:2014-05-01 08:43:53    阅读次数:660
当rootViewController为tabbarController时,控制屏幕旋转的方法
在ios6以后,ios系统改变了屏幕旋转的方法,如果要设置屏幕旋转的方法,需要在rootvc里面进行编写,例如 UIViewController *viewCtrl = [[UIViewController alloc] init]; UINavigationController *navCtrl = [[UINavigationController alloc] initWithRoot...
分类:其他好文   时间:2014-04-30 22:24:39    阅读次数:254
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!