上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页
摘要: 先来看一下 UIBarItem 的 title 的描述The title displayed on the item.You should set this property before adding the item to a bar. The default value is nil.它的默认值为nil,你应该在把 item 添加到 bar 上前设置好它。我们都知道,当我们 push 一个 viewController 后,返回 item 上的 title 正是上一个 viewController 的title;而且当 viewController 的 title 改变时,item 的 阅读全文
posted @ 2014-03-10 17:24 有妄想症的猫zz 阅读(9311) 评论(0) 推荐(0) 编辑
摘要: 先是 html 文件内容// index.html John : This is out Rich Text Editing View 加载 html 文件- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. NSBundle *mainBundle = [NSBundle mainBundle]; NSUR... 阅读全文
posted @ 2014-03-04 16:21 有妄想症的猫zz 阅读(23823) 评论(1) 推荐(0) 编辑
摘要: 如 AlertView,当 show 一个 Alert 时,它会覆盖在 Keyboard 上面,不影响显示的效果。那么我们自己创建的 View 如何像 Alert 那样不被键盘盖住呢?很简单,拿到 Application 的 最上面一个 window,把 View 加到这个 window 上,就可以了。UIWindow *window = [[[UIApplication sharedApplication] windows] lastObject];[window addSubview:view];Stack Overflow 阅读全文
posted @ 2014-03-03 13:33 有妄想症的猫zz 阅读(3650) 评论(0) 推荐(0) 编辑
摘要: http://wonderffee.github.io/blog/2013/10/13/understand-anchorpoint-and-position/ 阅读全文
posted @ 2014-03-01 21:58 有妄想症的猫zz 阅读(275) 评论(0) 推荐(0) 编辑
摘要: string = [[string componentsSeparatedByCharactersInSet:[NSCharacterSet characterSetWithCharactersInString:@" z/-"]] componentsJoinedByString:@""];示例:NSString *string = @"6225-021 xyz1234/";NSString *afterString = [[string componentsSeparatedByCharactersInSet:[NSCharacte 阅读全文
posted @ 2014-02-28 15:16 有妄想症的猫zz 阅读(383) 评论(0) 推荐(0) 编辑
摘要: 选中一个 Xib 文件,然后依次选择菜单中的 Editor - Canvas - Show Bounds Rectangles 阅读全文
posted @ 2014-01-22 10:43 有妄想症的猫zz 阅读(463) 评论(0) 推荐(0) 编辑
摘要: https://github.com/Sephiroth87/ODRefreshControlImportant note if your project doesn’t use ARC: you must add the-fobjc-arccompiler flag toODRefreshControl.min Target Settings > Build Phases > Compile Sources.ODRefreshControl is a “pull down to refresh” control for UIScrollView, like the one App 阅读全文
posted @ 2014-01-18 11:25 有妄想症的猫zz 阅读(374) 评论(0) 推荐(0) 编辑
摘要: https://github.com/kronik/DKLiveBlurSources of DKLiveBlur and Demo app to show live blur effect similar to yahoo weather iOS app. 阅读全文
posted @ 2014-01-18 11:23 有妄想症的猫zz 阅读(336) 评论(0) 推荐(0) 编辑
摘要: https://github.com/steipete/PSTCollectionViewOpen Source, 100% API compatible replacement of UICollectionView for iOS4.3 阅读全文
posted @ 2014-01-18 11:22 有妄想症的猫zz 阅读(272) 评论(0) 推荐(0) 编辑
摘要: https://developer.apple.com/library/ios/documentation/StringsTextFonts/Conceptual/TextAndWebiPhoneOS/KeyboardManagement/KeyboardManagement.html 阅读全文
posted @ 2014-01-15 16:32 有妄想症的猫zz 阅读(173) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页