码迷,mamicode.com
首页 >  
搜索关键字:implementation    ( 1803个结果
Householder Reduction Matlab Version
function [T, P] = householder(A) % Formations: RA = T, where A is original matrix % The implementation of Householder Reduction % R is constructed as a product of elementary reflector % T is upper tri...
分类:其他好文   时间:2014-11-30 23:18:18    阅读次数:221
创建几个小方块
#import "ViewController.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; int arr[4][4]={ 1,0...
分类:其他好文   时间:2014-11-29 21:31:48    阅读次数:258
选择是否记住密码整体button
效果图:工程图:此代码需要加入第三方库BECheckBox.代码:#import "RootViewController.h"//加入头文件#import "BECheckBox.h"@interface RootViewController ()@end@implementation RootVi...
分类:其他好文   时间:2014-11-28 11:47:50    阅读次数:132
点赞动画
// // ClickZanHelper.m // LJECClickZan // // Created by xiaoyao on 14/11/26. // Copyright (c) 2014年 lijien. All rights reserved. // #import "ClickZanHelper.h" #import @implementation ClickZanHe...
分类:其他好文   时间:2014-11-26 14:27:31    阅读次数:121
自定义导航栏图片 & 适配 (类别)
#import "UINavigationBar+CustomImage.h"@implementation UINavigationBar (CustomImage)-(UIImage *)drawImage:(NSString *)imageName{ UIImage *image = [U.....
分类:其他好文   时间:2014-11-26 13:31:37    阅读次数:271
单例设计模式IOS
#import "ZBAccountInfo.h"@interface ZBAccountInfo()@endstatic ZBAccountInfo *sharedObj = nil;@implementation ZBAccountInfo+(ZBAccountInfo *)sharedInst...
分类:移动开发   时间:2014-11-25 23:23:27    阅读次数:165
SharedPtrControlBlock
template class shared_ptr;template class weak_ptr;// This class is an internal implementation detail for shared_ptr.class SharedPtrControlBlock {tem.....
分类:其他好文   时间:2014-11-25 23:16:19    阅读次数:207
ios--动态计算label的高度
#import "ViewController.h"@interface ViewController (){ UILabel *dynamicLabel;}@end@implementation ViewController- (void)viewDidLoad { if (!dynamic...
分类:移动开发   时间:2014-11-25 15:50:38    阅读次数:195
[Objective-c 基础 - 2.10] description方法
A. 实例对象打印-description1.当使用NSLog函数并且使用%@占位符的时候,会调用对象的-description方法2.拿到-description的返回值,显示到console中默认返回指针地址 1 @implementation Person 2 3 - (NSString *....
分类:其他好文   时间:2014-11-24 20:35:03    阅读次数:224
IOS单例的设计模式
static SurveyRunTimeData *sharedObj = nil; //第一步:静态实例,并初始化置为nil。@implementation SurveyRunTimeData+ (SurveyRunTimeData*) sharedInstance//第二步:实例构造检查静态实例...
分类:移动开发   时间:2014-11-24 11:30:23    阅读次数:118
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!