08 2012 档案
IOS-property's synthesized getter follows Cocoa naming convention for returning 'owned' objects
摘要:http://stackoverflow.com/questions/6327448/semantic-issue-propertys-synthesized-getter-follows-cocoa-naming-convention-foYou take ownership of an object if you create it using a method whose name begins with “alloc”, “new”, “copy”, or “mutableCopy”. 阅读全文
posted @ 2012-08-21 15:17 tx天翔 阅读(952) 评论(0) 推荐(0)
IOS-Button CurrentTitle and titleLabel 使用
摘要:Code: UIButton *btnSignOn = [UIButtonbuttonWithType:UIButtonTypeCustom]; btnSignOn.frame = CGRectMake(100, 100, 150, 150); btnSignOn.center = CGPointMake(175, 175); [btnSignOn addTarget:selfaction:@selector(buttonSignOn:) forControlEvents:UIControlEventTouchUpInside]; btnSignOn.backgroundColo... 阅读全文
posted @ 2012-08-19 19:16 tx天翔 阅读(1475) 评论(0) 推荐(0)
IOS-精彩知识讲堂
摘要:1、NSAutoReleasePool使用中drain和release的区别; 阅读全文
posted @ 2012-08-16 09:27 tx天翔 阅读(158) 评论(0) 推荐(0)
EasyTime TV——轻松玩MAC
摘要:http://www.easytimetv.com 阅读全文
posted @ 2012-08-11 15:57 tx天翔 阅读(482) 评论(0) 推荐(0)
Mac 字典添加字典库
摘要:Mac 系统已经自带了字典程序 Dictionary,且和自家 Safari、Mail、SpotLight 等程序高度整合。遗憾的是英英字典,国人还是喜欢英汉汉英互译的词典。能自行添加词典到系统的词典程序。需要软件辅助。DictUnifier 就是国人出品的一款词典转换软件,可以自动转换安装星际译王 (StarDict) 格式字典,自动添加到 Mac 自带字典程序。下面是词典添加步骤:1. 下载DictUnifier。链接:http://code.google.com/p/mac-dictionary-kit/downloads/list2. 下载StarDict格式字典:(本人下载的是后面标 阅读全文
posted @ 2012-08-11 15:57 tx天翔 阅读(5244) 评论(0) 推荐(0)
IOS-UIViewController的生命周期
摘要:Posted on2011年10月14日by温泉当一个视图控制器被创建,并在屏幕上显示的时候。 代码的执行顺序1、 alloc 创建对象,分配空间2、init (initWithNibName) 初始化对象,初始化数据3、loadView 从nib载入视图 ,通常这一步不需要去干涉。除非你没有使用xib文件创建视图4、viewDidLoad 载入完成,可以进行自定义数据以及动态创建其他控件5、viewWillAppear 视图将出现在屏幕之前,马上这个视图就会被展现在屏幕上了6、viewDidAppear ... 阅读全文
posted @ 2012-08-10 17:11 tx天翔 阅读(7645) 评论(0) 推荐(0)
IOS-测试几个方法的调用顺序
摘要:点击Run:2012-08-10 16:41:45.019 Autosize[955:c07] - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions2012-08-10 16:41:45.042 Autosize[955:c07] - (void)viewDidLoad2012-08-10 16:41:45.043 Autosize[955:c07] - (void)viewWillAppear:(BOOL)animated2012 阅读全文
posted @ 2012-08-10 16:49 tx天翔 阅读(1004) 评论(0) 推荐(0)
转载-yuyi012-IOS学习Demos:UITableView,UIScrollView,AssetsLibrary,MapKit,AddressBook,AVFoundation,MediaPlayer,Coredata,Sqlite
摘要:yuyi012的公司接了个培训项目,给一个外包公司培训一批应届生,yuyi012从课程一半开始接手,讲了一个多月,内容包括UITableView,UIScrollView,AssetsLibrary,MapKit,AddressBook,AVFoundation,MediaPlayer,Coredata,Sqlite等等。每天晚上都会写一个demo第二天上课讲,代码里面基本都有中文注释,有的有上课用的ppt,现在把所有的例子都传到github上了。因为每个例子都只花了我一晚上时间,有bug再所难免,大家随便看看就好yuyi012的github主页https://github.com/yuyi0 阅读全文
posted @ 2012-08-06 22:46 tx天翔 阅读(935) 评论(0) 推荐(0)