背景 2014可谓移动医疗“元年”,作为苦逼“码农”的我忙忙碌碌即将度过这最后一天,体验了涨价后的地铁,体验了寒冷的西北风,也算有点收获是吧?最后翻看了下自己的笔记,貌似还有咨询没来得及整理,趁着还有点时间整理mark一下,来年再接再厉!...
分类:
移动开发 时间:
2014-12-31 20:10:27
阅读次数:
212
#pragma mark在应用程序加载完毕之后调用- (BOOL)application:(UIApplication*)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions{ NSLog(@"didFinish...
分类:
移动开发 时间:
2014-12-31 15:47:45
阅读次数:
207
一、#pragma mark NSObject常用方法调用。void objUse() { Student *stu = [[[Student alloc] init ] autorelease]; //isKindOfClass判断对象是否属于某个类或者子类。 if (...
分类:
其他好文 时间:
2014-12-30 16:42:15
阅读次数:
121
一、#pragma mark 日期创建void dateCreate() { //date方法返回的就是当前时间。 NSDate *date = [NSDate date]; //从现在开始再增加10秒。 date = [NSDate dateWithTimeIntervalSinceN...
分类:
其他好文 时间:
2014-12-30 13:21:49
阅读次数:
126
---恢复内容开始---嗯 今天又看到一个非常不错的入门git教程 Mark一下阮一峰Git操作详解主要讲解了五个常用的git命令git clonegit remotegit fetchgit pullgit push---恢复内容结束---
分类:
其他好文 时间:
2014-12-30 01:41:57
阅读次数:
143
NSNumber是NSValue的子类,但NSNumber只能包装数字类型,NSValue可以包装任意值,也就可以用NSValue包装结构体后加入NSArray、NSDictionary等集合中。一、#pragma mark 将系统自带结构体包装成对象void value() { CGPoint ....
分类:
其他好文 时间:
2014-12-29 21:15:55
阅读次数:
154
NewJFramepackage scoreaynalysissystem;/** * * @hl_mark * */import java.awt.Graphics;import java.io.*;import java.util.*;import java.util.logging.Leve....
分类:
编程语言 时间:
2014-12-29 21:15:16
阅读次数:
269
#pramga mark NSNumber的用法。void number() { //将int类型的10包装成一个NSNumber对象。 NSNumber *number = [NSNumber numberWithInt:10]; //添加数值到数组中。 NSMutableArray *...
分类:
其他好文 时间:
2014-12-29 21:10:57
阅读次数:
129
#pragma mark 可变字典的使用。void dictUse() { NSMutableDictionary *dict = [NSMutableDictionary dictionary]; Student *stu = [Student studentWithName:@"stu"];.....
分类:
其他好文 时间:
2014-12-29 20:02:54
阅读次数:
135
一、#pragma mark 创建字典。void dictionaryCreate() { NSDictionary *dict = [NSDictionary dictionaryWithObject:@"v" forKey:@"k"]; dict = [NSDictionary dicti...
分类:
其他好文 时间:
2014-12-29 19:48:52
阅读次数:
172