#import "ViewController.h"@interface ViewController ()@property (weak, nonatomic) IBOutlet UILabel *show;@end@implementation ViewController - (voi...
分类:
其他好文 时间:
2014-07-16 20:41:43
阅读次数:
186
/*使用UIImagePickerController和UIPopverController,先在头文件中设置要遵循的协议:*/@implementation PickerVC{ /*UIPopoverController must use the global variable*/ UIPop.....
分类:
其他好文 时间:
2014-07-16 20:40:53
阅读次数:
134
1、文件结构 每个C++/C程序通常分为两个文件: a、用于保存程序的声明(declaration),称为头文件。 b、用于保存程序的实现(implementation),称为定义文件(definition)。 C++/C程序的头文件以".h"为后缀,C程序的定义文件以"...
分类:
编程语言 时间:
2014-07-16 18:38:36
阅读次数:
133
#import "AppDelegate.h"#import "FisrtViewController.h"@interface AppDelegate () @end@implementation AppDelegate - (BOOL)applicat...
分类:
其他好文 时间:
2014-07-16 18:16:12
阅读次数:
156
// Algorithm implementation -*- C++ -*-// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,// 2010, 2011// Free Software Foundation,...
分类:
其他好文 时间:
2014-07-16 16:56:01
阅读次数:
375
TranslucentToolbar.h文件
#import
@interface TranslucentToolbar :
UIToolbar
@end
TranslucentToolbar.m文件
#import "TranslucentToolbar.h"
@implementation TranslucentToolbar
- (id)initWi...
分类:
其他好文 时间:
2014-07-16 11:22:19
阅读次数:
210
依据《C++ More Exception》所述的规则:
Rule #1: Never write using-directives in header files.
Rule #2: Never write namespace using-declarations in header files.
Rule #3: In implementation files, never ...
分类:
其他好文 时间:
2014-07-16 11:00:58
阅读次数:
141
最近本人在看《TCP/IP Illustrated Volume2:The Implementation》这本书,自然要下载4.4BSD-Lite的源代码配合书本一起研读。以前学习Vim的时候就知道Vim可以通过插件的功能来配置一个功能强大的自定义IDE,这次有这么好的机会为什么不利用一下呢?于是在...
分类:
其他好文 时间:
2014-07-14 19:36:53
阅读次数:
276
@interface MoveView : UIView{ CGPoint startPoint;}#import "MoveView.h"@implementation MoveView- (id)initWithFrame:(CGRect)frame{ self = [super i...
分类:
其他好文 时间:
2014-07-14 15:42:42
阅读次数:
157
#import "ViewController.h"
@interface ViewController ()
@property (strong,nonatomic) NSArray *bj;
@property (strong, nonatomic)NSArray *gd;
@end
@implementation ViewController
- (void)viewDidLoad...
分类:
其他好文 时间:
2014-07-12 22:22:54
阅读次数:
286