码迷,mamicode.com
首页 >  
搜索关键字:implementation    ( 1803个结果
iOS UI进阶-5.0 蓝牙/加速计/传感器
传感器实现代码:#import "ViewController.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; // Do...
分类:移动开发   时间:2015-10-04 12:18:14    阅读次数:192
绘制垃圾图像
#import "MyLayer.h"@implementation MyLayer- (void)drawInContext:(CGContextRef)ctx{ // 设置填充色 CGContextSetRGBFillColor(ctx, 1, 0, 0, 1); // 椭圆 ...
分类:其他好文   时间:2015-10-02 19:50:41    阅读次数:158
Detecting Client Connection in WCF Long Running Service (Heartbeat Implementation) z
Download source - 45.3 KBIntroductionHello everyone! This is my first blog on WCF and I hope that you like it.Today, I will talk about how to implemen...
分类:其他好文   时间:2015-10-02 10:08:36    阅读次数:327
MJExtension解决字典中嵌套字典数组问题
@implementation YMOutData+ (NSDictionary *)objectClassInArray{ return @{@"broadband":[broadband class], @"timepackage":[timepackage class], ...
分类:编程语言   时间:2015-09-30 19:32:51    阅读次数:598
文档学习 - UILabel - 属性详解
#import "ViewController.h"@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; // 1. UILabel *label = [[UILabel alloc] init]; ...
分类:其他好文   时间:2015-09-30 13:01:37    阅读次数:521
python 实现单链表
#! /usr/bin/env python ###### Linked List python implementation###### @reference Data Structures and Algorithm Analysis in C:Second Edition : Mark All...
分类:编程语言   时间:2015-09-30 12:44:23    阅读次数:223
ios nslog 打印字典为中文
#import @implementation NSDictionary (Log)- (NSString *)descriptionWithLocale:(id)locale{ NSMutableString *str = [NSMutableString string]; [...
分类:移动开发   时间:2015-09-29 16:12:27    阅读次数:185
self、super、id的用法
一、self的用法oc中的self有点想C++中的this指针,它指向的是调用该方法的对象或者类,看一下例子:@implementation Book- (instancetype)initWithTile:(NSString *)title withPageNum:(NSInteger)pageN...
分类:其他好文   时间:2015-09-28 20:43:46    阅读次数:147
单例类的创建
#import "SingalTon.h"@implementation SingalTon//实例变量不能在静态方法中使用//需要定义成全局变量或者静态变量static SingalTon * _singleTon=nil;+(SingalTon *) ShareSingleTon{// 返回对....
分类:其他好文   时间:2015-09-28 20:43:14    阅读次数:203
TouchAndGuest触摸事件和手势
//// nextViewController.m#import "nextViewController.h"#import "my.h"@interface nextViewController ()@end@implementation nextViewController- (void)vie...
分类:其他好文   时间:2015-09-25 08:26:35    阅读次数:161
1803条   上一页 1 ... 89 90 91 92 93 ... 181 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!