上一页 1 ··· 7 8 9 10 11 12 13 14 15 下一页
摘要: 看视频学JAVA,不想下载 notepad++之类的,虽然知道mac有内嵌的JAVA sdk ,但是还是不知道怎么编写,今天终于编写了我的第一个JAVA程序,还是以 Hello World 开始吧1,打开终端,java -version 看是否有JAVA SDK2,在桌面上创建JAVA文件夹(不是必... 阅读全文
posted @ 2015-07-30 20:41 shidaying 阅读(6860) 评论(0) 推荐(0) 编辑
摘要: float tmpFloatData2 = 3.7; NSString *tmpStr2 = [NSString stringWithFormat:@"%.0f", tmpFloatData2]; NSLog(@"tmpStr2 = %@", tmpStr2);//结果为4 ... 阅读全文
posted @ 2015-07-30 18:57 shidaying 阅读(652) 评论(0) 推荐(0) 编辑
摘要: NSArray *beforeSortArray = [[NSArray alloc] initWithObjects: @{@"id":@"1"}, @{@"id":@"3"... 阅读全文
posted @ 2015-07-30 16:54 shidaying 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 删除xcode 里的多余证书方法一:command+shift+G 前往文件夹:~/Library/MobileDevice/Provisioning Profiles方法二:进入xcode 的偏好设置(preferences)->Accounts->点击你的开发者帐号f右键选择你要删除的证书,sh... 阅读全文
posted @ 2015-07-20 16:57 shidaying 阅读(754) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/yqmfly/article/details/43525397 阅读全文
posted @ 2015-05-07 17:32 shidaying 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 直接上代码吧var positionX:CGFloat = 10var positionY:CGFloat = 20var tmpX:Float = 30var tmpY:Float = 40//运算的时候,一定要注意所有的数据类型保持一致tmpx = Float(positionX) * Floa... 阅读全文
posted @ 2015-04-17 03:24 shidaying 阅读(3969) 评论(0) 推荐(0) 编辑
摘要: 一,popViewControllerAnimated[self.navigationController popViewControllerAnimated:YES];二,popToRootViewControllerAnimated[self.navigationController popTo... 阅读全文
posted @ 2015-04-10 18:13 shidaying 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 一,在需要的地方添加监听[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onKeyboardWillShowNotification:) ... 阅读全文
posted @ 2015-04-10 15:57 shidaying 阅读(302) 评论(0) 推荐(0) 编辑
摘要: class func sharedInstance() -> GlobalConstant { struct Singleton{ static var predicate:dispatch_once_t = 0 static var instance:GlobalCons... 阅读全文
posted @ 2015-04-01 10:57 shidaying 阅读(181) 评论(0) 推荐(0) 编辑
摘要: //NSString 类型 转为整型,浮点型, var test:NSString = "3.3" println("test\(test)") println("test\(test.integerValue)") println("test\(test.floatValu... 阅读全文
posted @ 2015-03-27 11:33 shidaying 阅读(6284) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 下一页