时光

Strive to be an excellent developer

  :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2015年3月12日

摘要: 1,ImageView默认不可交互,可设置userInteractionEnabled=YES2,xib中所有view默认tag都是0,所以要想通过viewWithTag获取控件,tag不能设置为03,TableView(1) 设置TableView Item高度 * TableView#rowH... 阅读全文
posted @ 2015-03-12 08:42 朱东方 阅读(202) 评论(1) 推荐(0) 编辑

2015年3月11日

摘要: EditText有这么个便利方法```java/** * Convenience for {@link Selection#setSelection(Spannable, int)}. */public void setSelection(int index) { Selection.setS... 阅读全文
posted @ 2015-03-11 12:08 朱东方 阅读(128) 评论(0) 推荐(0) 编辑

2015年3月5日

摘要: iOS开发路线简述 [http://www.cocoachina.com/ios/20150303/11218.html](http://www.cocoachina.com/ios/20150303/11218.html)![](http://cc.cocimg.com/api/uploads/i... 阅读全文
posted @ 2015-03-05 09:52 朱东方 阅读(126) 评论(0) 推荐(0) 编辑

2015年3月4日

摘要: StatusBarHeight = 20NavigationBarHeight = 44TabBarHeight = 49```UITabBarController *tabBarController = [[UITabBarController alloc] initWithNibName:nil... 阅读全文
posted @ 2015-03-04 08:44 朱东方 阅读(5180) 评论(0) 推荐(0) 编辑

2015年3月3日

摘要: int to NSString```int age = 10;NSString *ageStr = [NSString stringWithFormat:@"%d", age];```NSString to int ```NSString *ageStr = @"10";int age = [age... 阅读全文
posted @ 2015-03-03 22:21 朱东方 阅读(215) 评论(0) 推荐(0) 编辑

2015年2月28日

摘要: 问题来自[StackOverflow](http://stackoverflow.com/questions/24031621/swift-how-to-convert-string-to-double)```(swiftString as NSString).doubleValue``` 阅读全文
posted @ 2015-02-28 17:38 朱东方 阅读(371) 评论(0) 推荐(0) 编辑

摘要: 当调用`FragmentTransaction#hide(fragment)`和`FragmentTransaction#show(fragment)`方法, fragment不会调用生命周期方法`onResume`和`onPause()` > Fragment的onResume和onPause调... 阅读全文
posted @ 2015-02-28 11:21 朱东方 阅读(639) 评论(0) 推荐(0) 编辑

摘要: 主要把在论坛中看到的好文章收集起来,有时间深读之,推荐使用Pocket**Xcode**+ [Xcode正确打开方式-Debuging](http://www.cocoachina.com/ios/20150225/11190.html) 教你如何正确使用Xcode进行断点调试**Animation... 阅读全文
posted @ 2015-02-28 11:00 朱东方 阅读(251) 评论(0) 推荐(0) 编辑

2015年2月27日

摘要: Start Activity```// 方式1startActivity(new Intent(Animation.this, AlertDialogSamples.class));overridePendingTransition(R.anim.fade, R.anim.hold);// 方式2/... 阅读全文
posted @ 2015-02-27 22:01 朱东方 阅读(137) 评论(0) 推荐(0) 编辑

2013年12月3日

摘要: null 阅读全文
posted @ 2013-12-03 11:25 朱东方 阅读(146) 评论(0) 推荐(0) 编辑