上一页 1 2 3 4 5 6 7 8 9 ··· 25 下一页
摘要: 1、UITableView:UITableViewDelegate 新增内容:// Use the estimatedHeigh(估算高度)t methods to quickly calcuate guessed values which will allow for fast load times of the table.// If these methods are implemented, the above -tableView:heightForXXX calls will be deferred until views are ready to be displayed, so 阅读全文
posted @ 2013-09-28 09:36 yingkong1987 阅读(474) 评论(0) 推荐(0) 编辑
摘要: 1、UINavigationBar: NSDictionary* attrs =@{NSForegroundColorAttributeName: [UIColorblackColor], NSFontAttributeName: [UIFontfontWithName:@"AmericanTypewriter"size:0.0], }; [[UINavigationBarappearance]setTitleTextAttributes:attrs]; [[UINavigationBarappearance]setTintColor:[UI... 阅读全文
posted @ 2013-09-28 09:33 yingkong1987 阅读(344) 评论(0) 推荐(0) 编辑
摘要: IOS7在UI方面发生了很大改变,所以感觉有必要重新审视的学习一下(新特性+以前未注意到的特性)。现在开始了:1、UIView:a)view.clearsContextBeforeDrawing=YES When the Clears Graphics Context (clearsContextBeforeDrawing) checkbox is selected, the drawingbuffer is automatically cleared to transparent black before the view is drawn. This behavior ensures th 阅读全文
posted @ 2013-09-28 09:30 yingkong1987 阅读(403) 评论(0) 推荐(0) 编辑
摘要: UIKit Dynamics的中文名称:有叫UIKit动力,也有叫UIKit动力模型和UIKit动态或者动态UI,叫什么名不要紧,理解就含义就可以了。什么是UIKit Dynamics ?UIKit动力提供了一个模拟真实世界中力学相关的动画和交互系统。比如重力、碰撞和吸附等。UIKit动力具有可组合、可重用和声明式的特点。我的理解就是把游戏开发中的物理引擎的搬过来了。首先简单看几点基础知识:1、UIDynamicAnimator:a、A dynamic animator provides physics-related capabilities and animations for its d 阅读全文
posted @ 2013-09-28 09:29 yingkong1987 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 1、fatal error: file '/Applications/Xcode5-DP.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h' has been modified since the precompiled header '/Users/sumomochuufuku/Librar 阅读全文
posted @ 2013-09-28 09:28 yingkong1987 阅读(527) 评论(0) 推荐(0) 编辑
摘要: a.使用objc_allocateClassPair创建一个类Class const char * className = "Calculator"; Class kclass = objc_getClass(className); if (!kclass) { Class superClass = [NSObject class]; kclass = objc_allocateClassPair(superClass, className, 0); }b.使用class_addIvar添加一个成员变量 NSUInteger size; NSUInteger alignm. 阅读全文
posted @ 2013-09-28 03:40 yingkong1987 阅读(1607) 评论(0) 推荐(0) 编辑
摘要: 举例:ios6:test.pngios7:ios7_test.png在ios7Image.plist中添加 "test"PS:如果要统一成ios7风格,可以看看UI7Kityouknowone/UI7Kit 路 GitHub@implementation UIImage (HT)static NSArray *ios7Images;+ (void)load {if (IOS7) {static dispatch_once_t once;dispatch_once( &once, ^{ios7Images = [NSArray arrayWithContentsOfF 阅读全文
posted @ 2013-09-25 11:30 yingkong1987 阅读(318) 评论(1) 推荐(0) 编辑
摘要: 方法一: calendarImageView_ =[[UIImageView alloc] initWithFrame:CGRectMake(3,3,60,72)]; calendarImageView_.image =[UIImage imageNamed:@"tc_news_tilt_plate.png"]; calendarImageView_.image = previewImage_; calendarImageView_.layer.shadowOffset =CGSizeMake(0,2); calendarImageView_.layer.shadowRad 阅读全文
posted @ 2013-09-24 12:54 yingkong1987 阅读(1150) 评论(0) 推荐(0) 编辑
摘要: Download View Introspector(CBIntrospector)内部检查工具是IOS和IOS模拟器的小工具集,帮助在调试的UIKit类的用户界面,它尤其有用于动态UI布局创建,或可以在运行时改变,或调节性能,发现非不透明的视图,或不必要重新绘制的视图.它使用于IOS模拟器设计,但是也可用在设备上!Download View Introspector它使用键盘快捷键来处理开始,结束和其他命令.它也可以通过一个广泛的UIGestureRecognizer 调用,如果它是在设备上使用.特点1.简单的设置和使用2.兼容于IOS模拟器伴随的桌面应用程序3.在运行过程中发送消息(调用任 阅读全文
posted @ 2013-09-24 12:01 yingkong1987 阅读(378) 评论(0) 推荐(0) 编辑
摘要: 1 设置委托(代理模式)建一个委托testViewDelegate.h#import//b中的参数传到a//设置委托方法,例如本文件//在b中.h描述NSObject * delegate;.m中调委托方法//在a中设置b的控制器实现delegate,eg--aViewControll.delegate=self;//然后在a中赋值@protocol testViewDelegate@optional-(void)outPut:(NSString *)theTitle;@end2externinterface之前定义extern NSString *strZhi;.hextern NSStri 阅读全文
posted @ 2013-09-23 00:51 yingkong1987 阅读(385) 评论(2) 推荐(1) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 25 下一页