码迷,mamicode.com
首页 >  
搜索关键字:implementation    ( 1803个结果
iOS中的UIView的基本属性
#import "AppDelegate.h"@interface AppDelegate ()@end@implementation AppDelegate- (BOOL)application:(UIApplication *)application didFinishLaunchingWith...
分类:移动开发   时间:2015-08-27 22:45:56    阅读次数:147
iOS中的分页控件(UIPageControl)
#import "RootViewController.h"@interface RootViewController ()@end@implementation RootViewController- (void)viewDidLoad { [super viewDidLoad]; /...
分类:移动开发   时间:2015-08-27 22:44:36    阅读次数:216
iOS中的触摸事件(TouchView) - (代理响应) - (实现touch的按钮化)
#import "RootViewController.h"#import "ActionView.h"#import "UIColor+MyUIColor.h"@interface RootViewController ()@end@implementation RootViewControlle...
分类:移动开发   时间:2015-08-27 22:33:57    阅读次数:402
iOS中的手势识别的积累:UIGestureRecognizer
#import "RootViewController.h"#import "UIColor+MyUIColor.h"@interface RootViewController ()@end@implementation RootViewController/* UITapGestureRecogn...
分类:移动开发   时间:2015-08-27 22:26:46    阅读次数:194
网络协议的使用
#import "ViewController.h" @interface ViewController () @end @implementation ViewController /**  *    http是一个超文本传输协议(Hyper Text Tansfer Protocol)所有www文件都必须遵守这个协议标准 ...
分类:其他好文   时间:2015-08-27 18:43:16    阅读次数:164
iOS UI21_多线程
// // MyOperation.m // UI21_多线程 // // Created by dllo on 15/8/26. // Copyright (c) 2015年 zhozhicheng. All rights reserved. //#import "MyOperation.h"@implementation MyOperation-(void)main { NSIn...
分类:移动开发   时间:2015-08-27 09:39:29    阅读次数:194
Objective-C 【构造方法(重写、场景、自定义)、super】
——————————————————————————————————————————— super关键字的使用 #import @interface Animal : NSObject -(void)run; -(void)eat; //+(void)eat; @end @implementation Animal -(void)run {     NSLog(...
分类:其他好文   时间:2015-08-27 00:34:39    阅读次数:153
UISegmentedControl 分段控件
#import "AppDelegate.h"#import "RootViewController.h"@interface AppDelegate ()@end@implementation AppDelegate- (void)dealloc{ [_window release]; [su.....
分类:其他好文   时间:2015-08-26 13:56:16    阅读次数:137
System.DateUtils 3. IsPM、IsAM 判断是否为上、下午
编译版本:Delphi XE7function IsPM(const AValue: TDateTime): Boolean; inline;function IsAM(const AValue: TDateTime): Boolean;implementation// 判断是否为下午functio...
分类:其他好文   时间:2015-08-26 13:36:36    阅读次数:121
Objective-C 【动态类型检测&响应方法】
——————————————————————————————————————————— 动态类型检测 代码: #import @interface Animal : NSObject -(void)run; -(void)abc; @end @implementation Animal -(void)run {     NSLog(@"Animal run!...
分类:其他好文   时间:2015-08-26 12:05:53    阅读次数:176
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!