上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: http://blog.cnrainbird.com/index.php/2012/05/31/guan_yu_git_de_submodule/搞开发的都大都知道章鱼猫吧(github,哈哈~~)。里面有各种智慧的结晶合理利用,事半功倍。可是最近发现里面稍微复杂一些的工程都开始整submodule了。无论是直接zip下载,还是clone的,submodule都是空的,这样的运行肯定会提示缺少文件撒。以icyleaf的ShareKit为例,里面依懒了JSONKit等其它开源工程。这种情况下怎么办呢?还是直接命令行吧。打开终端(terminal)找个地儿执行以下命令:[rainbird@loca 阅读全文
posted @ 2012-06-20 18:04 worldworld 阅读(1667) 评论(0) 推荐(0) 编辑
摘要: Mac OS Terminal 基本指令(全)Mac OS X 启用超级用户的方法Root user,又名超级用户,是一个权力最高的Unix 账户,Root 的账户能在整个系统里任何部份进行任何“操作”,包括:拷贝档案、移动/移除档案、执行程序等。所以,通常 Root 的账户都只会指派给高级专业的用户使用。因此,苹果把Root user 隐藏在MacOS X 里。但有时候我们不得不启用Root用户以便于实现某些操作,可以通过以下三种方法把启动Root账户。方法一:把Mac OS X 的安装光盘放入到光驱中,用光盘启动系统,在安装菜单里选择“Password Reset”选项,便能更改你的密码和 阅读全文
posted @ 2012-06-20 13:38 worldworld 阅读(6298) 评论(0) 推荐(0) 编辑
摘要: NSURL* nurl=[[NSURLalloc]initWithString:[urlStringstringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]; 阅读全文
posted @ 2012-06-19 20:33 worldworld 阅读(532) 评论(0) 推荐(0) 编辑
摘要: -(void)setContentInset:(UIEdgeInsets)s{ UIEdgeInsets insets = s; if(s.bottom>8) insets.bottom = 0; insets.top = 0; [super setContentInset:insets];}http://www.hanspinckaers.com/multi-line-uitextview-similar-to-smshttp://stackoverflow.com/questions/3696443/remove-bottom-space-from-uitextview 阅读全文
posted @ 2012-06-12 11:24 worldworld 阅读(356) 评论(0) 推荐(0) 编辑
摘要: 写入plist文件NSString *plistPath = @"/private/var/mobile/Media/iTunes_Control/iTunes/Ringtones.plist"; NSMutableDictionary *dictionary = [NSMutableDictionary dictionaryWithContentsOfFile:plistPath]; [[dictionary objectForKey:@"Ringtones"] setObject:ringtones forKey:ringName]; if (![d 阅读全文
posted @ 2012-06-08 16:47 worldworld 阅读(683) 评论(0) 推荐(0) 编辑
摘要: float coordinate =2.0f;[nodeScrollView setContentOffset:CGPointMake(460* coordinate,0) animated:YES];http://stackoverflow.com/questions/4436745/uiscrollview-with-next-and-previous-button-actionfor (UIView *view in [[self superview] subviews]) { if ([view isKindOfClass:[UIScrollView class]]) { ... 阅读全文
posted @ 2012-06-06 14:12 worldworld 阅读(209) 评论(0) 推荐(0) 编辑
摘要: NSFileManager *fileManager = [NSFileManagerdefaultManager];[fileManager contentsOfDirectoryAtPath:resourcePath error:nil]DLog(@"files is %@",[fileManager contentsOfDirectoryAtPath:resourcePath error:nil]);打印结果files is ( "20120606125656860.m4r", "20120606125709704.m4r", 阅读全文
posted @ 2012-06-06 13:01 worldworld 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 这个问题的实质应该是在非主线程中 直接修改 界面。如果把alertView 发在主线程调用就ok了。==============非主线程[self performSelectorOnMainThread:@selector(onResp*****eInMainThread) withObject:nil waitUntilDone:YES];============= 主线程-(void)onResp*****eInMainThread{[waitingBackView removeFromSuperview];UIAlertView *alert = [[UIAlertView alloc] 阅读全文
posted @ 2012-06-05 17:26 worldworld 阅读(1782) 评论(1) 推荐(1) 编辑
摘要: static RootViewController *sharedRootController = nil;+(RootViewController *) sharedController{@synchronized(self){if (sharedRootController == nil) {sharedRootController = [[[self alloc] init] autorelease];}}return singleController;}+(id) allocWithZone:(NSZone *)zone{@synchronized(self){if (sharedRo 阅读全文
posted @ 2012-06-05 17:25 worldworld 阅读(153) 评论(0) 推荐(0) 编辑
摘要: Filename Dimensi*****Default-Portrait.png * 768w x 1004hDefault-PortraitUpsideDown.png 768w x 1004hDefault-Landscape.png ** 1024w x 748hDefault-LandscapeLeft.png 1024w x 748hDefault-LandscapeRight.png 1024w x 748hDefault.png Not recommended 阅读全文
posted @ 2012-06-04 09:33 worldworld 阅读(176) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页