#import "AppDelegate.h"@interface AppDelegate ()@end@implementation AppDelegate- (BOOL)application:(UIApplication *)application didFinishLaunchingWith...
分类:
移动开发 时间:
2015-08-27 22:45:56
阅读次数:
147
#import "RootViewController.h"@interface RootViewController ()@end@implementation RootViewController- (void)viewDidLoad { [super viewDidLoad]; /...
分类:
移动开发 时间:
2015-08-27 22:44:36
阅读次数:
216
#import "RootViewController.h"#import "ActionView.h"#import "UIColor+MyUIColor.h"@interface RootViewController ()@end@implementation RootViewControlle...
分类:
移动开发 时间:
2015-08-27 22:33:57
阅读次数:
402
#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
//
// 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
———————————————————————————————————————————
super关键字的使用
#import
@interface Animal : NSObject
-(void)run;
-(void)eat;
//+(void)eat;
@end
@implementation Animal
-(void)run
{
NSLog(...
分类:
其他好文 时间:
2015-08-27 00:34:39
阅读次数:
153
#import "AppDelegate.h"#import "RootViewController.h"@interface AppDelegate ()@end@implementation AppDelegate- (void)dealloc{ [_window release]; [su.....
分类:
其他好文 时间:
2015-08-26 13:56:16
阅读次数:
137
编译版本:Delphi XE7function IsPM(const AValue: TDateTime): Boolean; inline;function IsAM(const AValue: TDateTime): Boolean;implementation// 判断是否为下午functio...
分类:
其他好文 时间:
2015-08-26 13:36:36
阅读次数:
121
———————————————————————————————————————————
动态类型检测
代码:
#import
@interface Animal : NSObject
-(void)run;
-(void)abc;
@end
@implementation Animal
-(void)run
{
NSLog(@"Animal run!...
分类:
其他好文 时间:
2015-08-26 12:05:53
阅读次数:
176