码迷,mamicode.com
首页 >  
搜索关键字:implementation    ( 1803个结果
ios layer 动画
#import "ViewController.h"@interface ViewController (){ CALayer *_l1;//定义能够全局使用 CALayer *_l2;}@end@implementation ViewController- (void)viewDidLoad { ...
分类:移动开发   时间:2015-01-12 19:02:46    阅读次数:117
ios的延迟执行的方法
1.最直接的方法performSelector:withObject:afterDelay:这种方法的缺点:每次要为延时写一个方法2.使用类别,用BOLCK执行01 @implementation NSObject (PerformBlockAfterDelay)02 03 ...
分类:移动开发   时间:2015-01-12 11:29:30    阅读次数:201
spring mvc ContentNegotiatingViewResolver 根据路径后缀,选择不同视图
理论 public class ContentNegotiatingViewResolver extends WebApplicationObjectSupport implements ViewResolver, Ordered Implementation of ViewResolver that resolves a view based on the request file name ...
分类:编程语言   时间:2015-01-10 12:43:55    阅读次数:264
OC的分类和协议
分类和协议是OC中比较显著的俩个特点。分类的功能主要是实现类的扩展,协议则常常用在代理的实现上。 1、分类的声明 在分类的接口文件中,只允许新增方法,不能新增变量。语法形式: @interface 类名 (分类名) 新增的方法声明; @end   2、定义方法 在分类的实现文件中,对新增方法进行定义,语法如下: @implementation 类名 (分类名) 新增的方法的定义...
分类:其他好文   时间:2015-01-09 23:45:46    阅读次数:198
XGPush集成(信鸽集成)demo
1 #import "AppDelegate.h" 2 #import "XGPush.h" 3 #import "XGSetting.h" 4 5 #define _IPHONE80_ 80000 6 7 @implementation AppDelegate 8 - (v...
分类:其他好文   时间:2015-01-07 23:16:36    阅读次数:396
ios (Quartz 2D绘图)各种绘图方式及相机的使用
一: 具体使用的细节,本人也是参考http://blog.163.com/wkyuyang_001/blog/static/10802122820133190545227/ 下面介绍具体使用Quartz 2D绘图实现画图板功能 .m文件中,dog的实现如连接中所示一样的 #import "drawTestView.h" #import "Dog.h" @implementation dr...
分类:移动开发   时间:2015-01-07 18:46:32    阅读次数:199
iOS UIWebView 无法确定web页面的真实高度
@interface IndEditorDetailViewController () { UIWebView *_webView; UIProgressView *_progressView; NJKWebViewProgress *_progressProxy; } @end @implementation IndEditorDetailViewController ...
分类:移动开发   时间:2015-01-06 15:39:28    阅读次数:148
ios 导航页面
// AppDelegate.m#import "AppDelegate.h"#import "ViewController.h"@interface AppDelegate ()@end@implementation AppDelegate- (BOOL)application:(UIApplic...
分类:移动开发   时间:2015-01-05 20:26:54    阅读次数:198
定时器实现的地球围绕太阳旋转
一个地球围绕太阳旋转 1 #import "HUAppDelegate.h" 2 3 #define CENTER_X 160 4 #define CENTER_Y 240 5 #define RADIUS 130 6 7 @implementation HUAppDelegate 8 9 -...
分类:其他好文   时间:2015-01-03 23:43:17    阅读次数:246
IOS拖动
#import "ViewController.h"@interface ViewController ()@property (nonatomic, strong) UIButton *btn;@end@implementation ViewController@synthesize btn;- ...
分类:移动开发   时间:2015-01-02 22:21:27    阅读次数:293
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!