https://github.com/YouXianMing
摘要: UIFontWDCustomLoaderhttps://github.com/daktales/UIFontWDCustomLoaderYou can use UIFontWDCustomLoader category to load any compatible font into your iOS projects at runtime without messing with plist, font unknown names or strange magic.The only things you'll have to know are your font filenames 阅读全文
posted @ 2014-04-10 17:04 YouXianMing 阅读(852) 评论(1) 推荐(1) 编辑
摘要: FrameAccessorhttps://github.com/AlexDenisov/FrameAccessorManual Install(手动安装)All you need to do is drop FrameAccessor files into your project, and add #include "FrameAccessor.h" to the top of files that will use it.你需要做的就是把文件夹FrameAccessor拖到你的工程当中,然后引入头文件FrameAccessor.h即可.Example Usage以前你要 阅读全文
posted @ 2014-04-10 13:00 YouXianMing 阅读(1056) 评论(4) 推荐(1) 编辑
摘要: 前几天折腾了下mac系统的VPN fan qiang,今天来写写WIN7的 fan qiang 教程1. 进以下网站,获取免费的VPN服务器地址,用户名,密码,后面要用2.请按如下步骤操作3.进行连接4.做您想做的,亲^_^上gooogle上YouxTube上程序员最爱的Github-完- 阅读全文
posted @ 2014-04-09 21:19 YouXianMing 阅读(387) 评论(0) 推荐(0) 编辑
摘要: The Amazing Audio Enginehttps://github.com/TheAmazingAudioEngine/TheAmazingAudioEngineThe Amazing Audio Engine is a sophisticated framework for iOS audio applications, built so you don't have to.It is designed to be very easy to work with, and handles all of the intricacies of iOS audio on your 阅读全文
posted @ 2014-04-09 20:45 YouXianMing 阅读(594) 评论(0) 推荐(0) 编辑
摘要: 刚开始折腾 xcode 5.1 自己的svn版本控制,应该很好用,但是用不好,搞了半天也没法把工程传到svn服务器上去.在 xcode 5.1 Soure Control 中弄点击 Check Out...下一步(注意选Subversion)之后 CheckOut 出来即可但是,这个得先需要你的服务... 阅读全文
posted @ 2014-04-09 16:24 YouXianMing 阅读(1539) 评论(0) 推荐(0) 编辑
摘要: UITableView分页上拉加载简单,ARC环境,源码如下,以作备份:原理是,点击最后一个cell,触发一个事件来处理数据,然后reloadDataRootViewController.m + RootViewController.h#import "RootViewController.h"@interface RootViewController ()@property (nonatomic, strong) UITableView *tableView;@property (nonatomic, strong) NSMutableArray *dataSource; 阅读全文
posted @ 2014-04-08 12:21 YouXianMing 阅读(1032) 评论(1) 推荐(0) 编辑
摘要: 本人视频教程系列导入AFNetworking 2.0 文件夹,引入头文件AFNetworking.h---------------*使用NSURLSessionDownloadTask来下载一张图片,并带有下载进度(以下两段代码是一起的,注意)NSProgress为iOS7新增加的类 // 定... 阅读全文
posted @ 2014-04-08 10:41 YouXianMing 阅读(5306) 评论(11) 推荐(3) 编辑
摘要: // 直接从RGB取颜色(RGB 0xFF00FF)#define UICOLOR_FROM_RGB(rgbValue) \[UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue & 0xFF00) >> 8))/255.0 blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]//获取当前屏幕尺寸#define APP_HEIGHT [UIScreen mainScreen]. 阅读全文
posted @ 2014-04-08 09:24 YouXianMing 阅读(428) 评论(0) 推荐(0) 编辑
摘要: 本人从事iOS开发工作,但对特效制作很感兴趣,现提供一份教程,制作本人logo的教程。上图是用Photoshop与After Effects与GIF Movie Gear合力制作的动态图片的logo,现在简单讲讲如何制作吧。1.用Photoshop制作出字母以及背景要点:阴影部分靠渐变工具中的透明渐变产生,这个最终会产生边缘渐变消失的效果(如动画中边缘逐渐消失),很重要,如下图示2.将文件分层导入到After Effects 中3.新建六个固态层,并用钢笔工具在线条上描绘4.对每个固态层使用 3D Stroke 特效,辉光特效(看起来更柔和),以及参数的配置,并根据时间打上关键帧要点:3D S 阅读全文
posted @ 2014-04-07 08:17 YouXianMing 阅读(4958) 评论(0) 推荐(0) 编辑
摘要: INTERACTIVE TRANSITIONS 实时动态动画翻译不到位处敬请谅解,感谢原作者分享精神原文链接http://www.thinkandbuild.it/interactive-transitions/源码下载http://pan.baidu.com/s/1i3HW5FZIt’s been a while and after some long due time off I’m finally back with a new iOS tutorial.I wanted to add some more details to myprevious postshowing you how 阅读全文
posted @ 2014-04-07 07:49 YouXianMing 阅读(914) 评论(0) 推荐(0) 编辑