- 博客(40)
- 收藏
- 关注
转载 XIB使用小技巧
1.http://www.th7.cn/Program/IOS/201409/281078.shtml2.http://blog.csdn.net/chumeng411/article/details/18039171
2015-05-13 10:30:24
427
原创 MAC自带SVN的配置 +ConerStone的Svn Server的配置 +.a文件的上传
1.创建SVN Repositroy打开终端 输入:svnadmin create /path/svn/prosvn是目录,pros是版本库,输入完成即可看见生成文档2、配置svn用户权限。/path/svn/pro/conf/目录下存在3个文件:authz,passwd,svnserve.conf(1)、配置svnserve.conf将里面的
2015-03-18 15:27:05
1362
转载 iOS第三方开源库的吐槽和备忘 - 王培
原文地址: http://www.tuicool.com/articles/7zmM7b
2015-01-07 21:51:08
755
转载 IPhone之AVAudioRecorder AVplayer
地址:http://www.cnblogs.com/lm3515/archive/2011/03/11/1981381.html地址:http://www.it165.net/pro/html/201405/13313.html
2015-01-06 20:01:15
468
转载 AFNetworking使用总结 与使用
原文地址http://mobile.51cto.com/iphone-445945.htm
2015-01-05 20:32:28
468
转载 iOS开发的22个奇谲巧技
http://www.csdn.net/article/2014-12-29/2823348-ios-dev-tricks
2015-01-03 17:26:57
445
原创 Xcode6 icon大小,LaunchImage的大小
icon:58 80;87 120; 120 180;launchImage:640*940; 640*1136
2015-01-03 15:34:40
679
转载 UITextField 隐藏自身软键盘、点击Return自动转到下个文本框、轻触背景隐藏软键盘
原文地址: http://www.gowhich.com/blog/513
2014-12-24 19:02:47
449
转载 loadView、viewDidLoad、initWithCoder、initWithNibName、awakeFromNib的用法
地址:http://jianyu996.blog.163.com/blog/static/11211455520131226840879/
2014-12-23 11:23:23
415
转载 代码中更改AutoLayout约束
原文地址:http://blog.sina.com.cn/s/blog_6291e42d0102uzav.html//遍历footerview约束(一般高,宽) NSArray* constrains = self.footerView.constraints; for (NSLayoutConstraint* const
2014-12-18 08:15:09
506
转载 IOS照相机的使用,与中文界面的设置
http://my.oschina.net/joanfen/blog/134677?p=1
2014-12-18 08:11:32
492
转载 MapKit的资料
http://www.th7.cn/Program/IOS/201401/169573.shtml
2014-12-12 19:34:55
477
转载 隐藏UITableView空Cell的Separator Lines
原文地址:http://blog.sina.com.cn/s/blog_6308b98c01016tah.htmlUITableView加载的时候,会碰到cell的数量不能填满整个屏幕,这个时候,屏幕上会显示空的cell的分隔线,很不爽,解决的方法有2个,一种是自定义cell,然后设置tableview的separatorStyle为UITableViewCellSeparatorSt
2014-12-10 10:00:41
524
转载 AutoLayout的代码实现
http://www.mgenware.com/blog/?p=490
2014-12-07 11:01:38
433
转载 storyboard之间的传值
http://www.baidu.com/link?url=hz6vSo2MVAX9NLB4LjSq_aqQMKwY45E5y_0Hvy8JgpgiCP0oIEGMBtnqroqKTpVyDif3ZRMxz-7rzJTBfb76C_
2014-12-04 19:01:49
564
原创 NavigationBar title的设置,背景颜色,图片
//设置背景图片 self.navigationController.navigationBar.barTintColor=[UIColorcolorWithRed:65.0/255green:105.0/255blue:225.0/255alpha:1]; [self.navigationItemsetTitle:@"xxxx"];
2014-11-24 14:59:17
1887
转载 uicolor的相关属性
原文地址http://www.tuicool.com/articles/AVzAZf
2014-11-21 14:36:31
727
转载 UIBezierPath贝塞尔弧线常用方法记
//根据一个矩形画曲线+ (UIBezierPath *)bezierPathWithRect:(CGRect)rect//根据矩形框的内切圆画曲线+ (UIBezierPath *)bezierPathWithOvalInRect:(CGRect)rect//根据矩形画带圆角的曲线+ (UIBezierPath *)be
2014-11-20 16:35:46
415
转载 UIBezierPath画圆弧的记录
zhuaUIBezierPath通过- (void)addArcWithCenter:(CGPoint)center radius:(CGFloat)radius startAngle:(CGFloat)startAngle endAngle:(CGFloat)endAngle clockwise:(BOOL)clockwise可以画出一段弧线。看下各个参数的意
2014-11-20 16:28:41
704
转载 core animation calayer的详解
http://www.cnblogs.com/wendingding/p/3800736.htmlhttp://www.cnblogs.com/pengyingh/articles/2381673.html
2014-11-20 14:37:05
376
转载 自定义textfile样例
http://www.it165.net/pro/html/201406/16276.html
2014-11-19 20:19:15
431
转载 uitableview自定义选中背景色
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath
2014-11-19 18:01:44
374
转载 UISearchbar的相关属性,方法的介绍
http://www.cnblogs.com/VincentXue/archive/2012/08/30/2664119.html
2014-11-18 19:39:21
430
翻译 collectionview的代码自定义和初始化
/* **UICollectionView的初始化 */ UICollectionViewFlowLayout *layout= [[UICollectionViewFlowLayoutalloc]init]; _colview=[[UICollectionViewalloc] initWithFrame:CGRectMake
2014-11-18 18:44:06
1489
转载 UITableview自定义代码初始化
http://blog.csdn.net/qq5306546/article/details/8062606注意事项:zi
2014-11-18 18:28:42
523
转载 NSFont字体大全
原文地址:http://www.cocoachina.com/downloads/video/2010/0827/2061.html
2014-11-18 16:00:13
1159
转载 NSTimer启动不能,无法循环,调用函数的解决方法
yu adispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ NSTimer* t = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(Reconnect:) user
2014-11-18 08:31:31
582
转载 ios导航栏,状态栏自定义设计相关参数 (转)
原文网址:http://www.2cto.com/kf/201312/262965.html
2014-11-17 13:50:27
1261
转载 带中文的地址nsstring 转成可传输url
NSString *query = [NSString stringWithFormat:@"http://www.google.com?q=苹果"]; NSString *strUrl = [query stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; url =
2014-11-13 08:56:01
544
转载 NSJSONSerialization JSONObjectWithData options的解析转论坛
我google NSJSONReadingOptions,这帖子出现在第一,但是楼上各位都没把问题说明白。 首先用代码来说明NSJSONReadingMutableContainers的作用: 复制代码NSString *str = @"{\"name\":\"kaixuan_166\"}"; NSMutableDicti
2014-11-11 15:17:54
3889
原创 c++ const char* to const void
void *buf= const_cast;buf=static_cast(buf);m_socket->SendMsg(buf,strlen("姓名:小明 学号:123456789,IP地址:192.168.1.14!"));
2014-09-11 15:29:19
1892
转载 socket-select函数
http://blog.sina.com.cn/s/blog_494597e30100dr5h.html
2014-09-10 00:25:30
398
转载 socket心得,转载
原文li不断的收到coolmei25 (梅生)的答谢,我都不好意思了(我都没帮到他),下面写出我在网络编程中的一点心得体会,希望对他(^_^也对大家)有帮助:1. 如果在已经处于 ESTABLISHED状态下的socket(一般由端口号和标志符区分)调用closesocket(一般不会立即关闭而经历TIME_WAIT的过程)后想继续重用该socket:BOOL bReusead
2014-09-09 17:26:38
492
转载 网络编程
http://blog.sina.com.cn/s/blog_693de6100101kl1t.html
2014-09-04 09:47:00
435
转载 网络
http://blog.sina.com.cn/s/blog_693de6100101kl1t.html
2014-09-04 09:46:00
403
转载 CCSpriteBatchNode
cocos2d-x学习笔记(21)--CCSpriteBatchNode2012-09-12 11:23:18 我来说两句 收藏 我要投稿cocos2d-x学习笔记(21)--CCSpriteBatchNode注意:从cocos2d-x学习笔记(21)开始我使用的cocos2d-x版本是2.0.2,而之前一直使用的版本是1.0。2.0
2014-04-18 17:31:43
711
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人