码迷,mamicode.com
首页 >  
搜索关键字:implementation    ( 1803个结果
高震宇作业
实现部分代码关于view的德国国旗实现@implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, ...
分类:其他好文   时间:2014-07-11 09:46:07    阅读次数:200
Effective C++ Item 25 考虑写出一个不抛异常的swap函数
经验:当std::swap对你的类型效率不高时,提供一个swap成员函数,并确定这个函数不抛出异常 示例: stl里的swap算法 namespace std{ template void swap(T &a, T &b){ T temp(a); a = b; b = temp; } } //“pimpl手法”(pointer to implementation) --> 文件间的编译依存度 class WidgetImpl{ public: //... pr...
分类:编程语言   时间:2014-07-10 19:35:50    阅读次数:240
用ios代码做view
import“ViewController.h"@interface ViewController()@end@implementation ViewController-(void)viewDidload{[super viewDidload];UIView *redview=[[UIView a...
分类:移动开发   时间:2014-07-10 15:48:47    阅读次数:263
【OC语法快览】六、类实现
Class Implementation 类实现 Let's create an implementation, starting with the getters: 接下来创建一个类实现,从访问器开始: #import "Photo.h" @implementation Photo - (NSString*) caption { return caption; } - (NSString*) photographer { return photograp...
分类:其他好文   时间:2014-07-09 12:54:22    阅读次数:252
iOS自定义segue和自定义segue转场动画
#import "CoolSegue.h" @implementation CoolSegue -(void)perform { UIViewController* source = self.sourceViewController; UIViewController* destination = self.destinationViewController;...
分类:移动开发   时间:2014-07-08 21:12:14    阅读次数:207
在ios中使用单例模式编程
本文转载至http://blog.csdn.net/remote_roamer/article/details/7107007 1. @implementation Singleton2.3.+ (Singleton *)instance {4. static Singleton *inst...
分类:移动开发   时间:2014-07-06 13:27:26    阅读次数:208
ios网络学习------11 原生API文件上传之断点续传思路
#import "MainViewController.h" @interface MainViewController () @end @implementation MainViewController - (void)viewDidLoad { [super viewDidLoad]; //下载文件 [self download]; } -(void)dow...
分类:移动开发   时间:2014-07-04 07:36:55    阅读次数:347
ios网络学习------10 原生API文件上传
使用原生态的api上传文件的实现: #import "MainViewController.h" @interface MainViewController () @property (weak, nonatomic) UIImageView *imageView; @end @implementation MainViewController - (void)viewDidLoad {...
分类:移动开发   时间:2014-07-03 17:11:43    阅读次数:279
什么是Parnas原则
《编程导论(Java)·3.1.3 接口与实现分离》 Parnas原则被称为接口与实现的分离(separation of interfaceand implementation)。 一.节选【p100-】: 1. Brooks Vs. David Parnas 在大规模编程中,如何组织大型团队中多个程序员同时开发、特别是如何对待其他程序员的代码,FrederickP. Brooks J...
分类:其他好文   时间:2014-07-03 16:21:03    阅读次数:186
HBase概念学习(九)HTablePool为何弃用?
我们看HConnection的getTable方法描述: getTable HTableInterface getTable(String tableName) throws IOException Retrieve an HTableInterface implementation for access to a table....
分类:其他好文   时间:2014-07-03 15:53:20    阅读次数:243
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!