XSLT存档  

不及格的程序员-八神

 查看分类:  ASP.NET XML/XSLT JavaScripT   我的MSN空间Blog
04 2012 档案
Specifying High-Resolution Images in iOS
摘要:Specifying High-Resolution Images in iOSAny iPhone application built for iOS 4.0 and later should include high-resolution versions of its image resources. When the application is run on a device that has a high-resolution screen, high-resolution images provide extra detail and look better because th 阅读全文
posted @ 2012-04-20 16:46 不及格的程序员-八神 阅读(499) 评论(0) 推荐(0)
Mac OSX 10.7.3 bugs.
摘要:1. 我目前设置了双显示在mac系统上,另外一个显示器是原来pc的,时常切换,但在切换成pc时,mac系统内的鼠标滚动出现不平滑状态。。。。 目前系统更新到了mountain lion状况没有改变2.xocde 4.3 bugs, 当xcode窗口跨越两个显示器,这时点击xcode file菜单中的源代码控制器进行代码提交之后,xcode窗口位置会向最左面屏幕偏出许多。。。 阅读全文
posted @ 2012-04-18 09:08 不及格的程序员-八神 阅读(306) 评论(0) 推荐(0)
UINavigatorController 里面的下的模式视图不能半透明下面的视图。
摘要:RootViewController.h 作为UINavigatorController根视图,模式弹出新窗口时,新窗口透明的部分无效 (设置UINavigatorController的modalPresentationStyle = UIModalPresentationCurrentContext即可)。1 untitled *vc = [[untitled alloc] initWithNibName:@"untitled" bundle:nil];2 self.modalPresentationStyle = UIModalPresentationCurrentCo 阅读全文
posted @ 2012-04-13 13:44 不及格的程序员-八神 阅读(505) 评论(0) 推荐(0)
windows xp 遭遇administrator账号劫持
摘要:为了安装git server ,在xp上安装了copssh,结果就是系统重启后,administrator登录选项没了,只有guest账号了,妈呀guest什么也干不了啊。百度之。先用命令 control userpasswords2进行系统用户登录选项设置页面,新建一个管理员账号,再设置登录时输入用户名与密码。重新登录时ctrl+alt+del输入administrator与密码搞定。 阅读全文
posted @ 2012-04-11 17:43 不及格的程序员-八神 阅读(426) 评论(0) 推荐(0)
dispatch_async 线程分发注意事项.
摘要:1 // NOTE: GameCenter does not guarantee that callback blocks will be execute on the main thread. 2 // As such, your application needs to be very care 阅读全文
posted @ 2012-04-11 09:43 不及格的程序员-八神 阅读(1753) 评论(0) 推荐(0)
XCode调试多线程遭遇海森伯效应一例
摘要:1 dispatch_async(dispatch_get_global_queue(0, 0), ^{ 2 3 dispatch_async(dispatch_get_main_queue(), ^{ 4 ... 5 [self myMethod]; 6 7 }); 8 9 -(void)myMe 阅读全文
posted @ 2012-04-10 11:19 不及格的程序员-八神 阅读(1196) 评论(0) 推荐(0)
通用版程序在the new iPad与Xcode4.3中的不兼容。
摘要:开发的一款通用版程序由于the new ipad的出现,运行出现了不兼容现像。原有程序启动图片default.png,default@2x.png,default~ipad.png,出现启动画面偏移问题,解决方式添加default@2x~ipad.png.用xcode4.3版打开项目,调度运行项目,程序布局面目全非,用原来的xcode3.2版则没有问题。 阅读全文
posted @ 2012-04-09 14:13 不及格的程序员-八神 阅读(391) 评论(3) 推荐(0)