#import "ViewController.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; // Do any add...
分类:
其他好文 时间:
2016-01-01 11:05:07
阅读次数:
157
we leverage private components to break our render function into more manageable pieces without leaking the implementation details of our component. ....
分类:
其他好文 时间:
2015-12-31 07:14:07
阅读次数:
319
1 #import "AppDelegate.h" 2 #import "ViewController.h" 3 4 @interface AppDelegate () 5 6 @end 7 8 @implementation AppDelegate 9 10 11 -...
分类:
移动开发 时间:
2015-12-30 21:40:59
阅读次数:
188
__super::member_function(); The__superkeyword allows you to explicitly state that you are calling a base-class implementation for a function th...
分类:
其他好文 时间:
2015-12-30 19:32:17
阅读次数:
106
中午分析的那篇博客的 子对话框程序:// Management.cpp : implementation file//#include "stdafx.h"#include "doorcontrol.h"#include "Management.h"#ifdef _DEBUG#define new ...
分类:
其他好文 时间:
2015-12-30 01:51:58
阅读次数:
339
ViewController.m#import "ViewController.h"@interface ViewController (){ UIImageView *imageView;}@end@implementation ViewController- (void)viewDidLoad ...
分类:
其他好文 时间:
2015-12-29 19:07:14
阅读次数:
145
关于单例的概念此处不做表述,直接上代码演示如何创建一个单例类。#import @interface MJDemo : NSObject+ (instancetype)sharedDemo;@end#import "MJDemo.h"@implementation MJDemo//在iOS中所有对象分...
分类:
其他好文 时间:
2015-12-29 01:02:11
阅读次数:
219
1 #import "ViewController.h" 2 #import "SecondViewController.h" 3 4 @interface ViewController () 5 6 @end 7 8 @implementation ViewControll...
分类:
移动开发 时间:
2015-12-28 12:06:23
阅读次数:
290
1.定义和使用Block 1 #import "ViewController.h" 2 3 @interface ViewController () 4 5 @end 6 7 @implementation ViewController 8 9 - (void)viewDidLoad {10...
分类:
其他好文 时间:
2015-12-28 01:00:02
阅读次数:
238
#import "AppDelegate.h"#import "UMessage.h"@interface AppDelegate ()@end@implementation AppDelegate- (BOOL)application:(UIApplication *)application di...
分类:
其他好文 时间:
2015-12-27 22:01:15
阅读次数:
289