上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 54 下一页
摘要: Problem:How to create a layer that looks like your notification center's or control center's backgroundSolution:Using UIImage+ImageEffects to Create a... 阅读全文
posted @ 2014-08-14 15:43 Master HaKu 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 以前学过C/C++/Java/C#语言的童鞋可能刚开始对于OC的方法和参数的命名规范大为不爽举例来说,如下一个OC方法:- (void)tableView:(UITableView *)tableViewcommitEditingStyle:(UITableViewCellEditingStyle)... 阅读全文
posted @ 2014-08-14 10:53 Master HaKu 阅读(6639) 评论(0) 推荐(0) 编辑
摘要: iOS中CollectionCiew由于多次点击,会给程序造成错误。这个时候,我们可以用过手势类来进行判断和过滤。但是,有一个快捷的解决方法,那就是给用户响应增加延时操作。具体代码如下:[collectionView setUserInteractionEnabled:NO];[collection... 阅读全文
posted @ 2014-08-14 10:09 Master HaKu 阅读(2053) 评论(0) 推荐(0) 编辑
摘要: ScenesScenes in a storyboard represent content shown within one screen in your application. A scene involves a view controller and the views that make... 阅读全文
posted @ 2014-07-28 10:58 Master HaKu 阅读(298) 评论(0) 推荐(0) 编辑
摘要: // 动态申请内存, 指向一个未初始化的整型 int *pi = new int;// pi指向一个整型值,初始化为0 int *pi = new int();// value of i is 1024 int i(1024);// pi指向1024 int *pi = new int(1024);... 阅读全文
posted @ 2014-07-17 11:32 Master HaKu 阅读(935) 评论(0) 推荐(0) 编辑
摘要: 1. dynamiccreateobject and initializationint *pi = new int; // pi points to an uninitialized intint *pi = new int(); // pi points to an int value in... 阅读全文
posted @ 2014-07-08 10:11 Master HaKu 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 我不知道该如何翻译Block这个关键字在Objective-C中,但是可以肯定得是:Block是一段代码。 我们来看它的英文解释: Blocks are a way to define a block of code that you will use at a later time. Someti 阅读全文
posted @ 2014-06-30 11:25 Master HaKu 阅读(207) 评论(0) 推荐(0) 编辑
摘要: Method DescriptionloadView Creates or returns a view for the view controller.viewDidLoadView has finished loading.viewWillAppear: View is about to app... 阅读全文
posted @ 2014-06-25 09:52 Master HaKu 阅读(141) 评论(0) 推荐(0) 编辑
摘要: When you were dragging in your label and your button to this view, you were adding them as subviews.By doing this programmatically you can see what go... 阅读全文
posted @ 2014-06-24 10:16 Master HaKu 阅读(407) 评论(0) 推荐(0) 编辑
摘要: • 第1级-能力突出的个人:用自己的智慧、知识、技能和良好的工作作风作出巨大贡献。• 第2级-乐于奉献的团队成员:为实现集体目标贡献个人才智,与团队成员通力合作。• 第3级-富有实力的经理人:组织人力和资源,高效地朝既定目标前进。• 第4级-坚强有力的领导者:全身心投入、执著追求清晰可见、催人奋发的... 阅读全文
posted @ 2014-06-13 14:11 Master HaKu 阅读(329) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 54 下一页