码迷,mamicode.com
首页 >  
搜索关键字:implementation    ( 1803个结果
简单计算器的设计
#import "ViewController.h"@interface ViewController ()@property (weak, nonatomic) IBOutlet UILabel *show;@end@implementation ViewController - (voi...
分类:其他好文   时间:2014-07-16 20:41:43    阅读次数:186
UIPopverController,UIImagePickerController,图片选取。
/*使用UIImagePickerController和UIPopverController,先在头文件中设置要遵循的协议:*/@implementation PickerVC{ /*UIPopoverController must use the global variable*/ UIPop.....
分类:其他好文   时间:2014-07-16 20:40:53    阅读次数:134
C++复习笔记(一)文件结构
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
stl_algo.h
// 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
创建透明的UIToolbar
TranslucentToolbar.h文件 #import @interface TranslucentToolbar : UIToolbar @end TranslucentToolbar.m文件 #import "TranslucentToolbar.h" @implementation TranslucentToolbar - (id)initWi...
分类:其他好文   时间:2014-07-16 11:22:19    阅读次数:210
在XX公司工作第二天,维护已有代码
依据《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
通过Vim+少量插件配置一个高效简洁的IDE
最近本人在看《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
uitableview学习---1
#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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!