自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 资源 (1)
  • 收藏
  • 关注

原创 等待网络返回数据再执行 以后的语句

while (!_dataArray) {                  [NSTimer scheduledTimerWithTimeInterval:1 target:nil selector:nil userInfo:nil repeats:NO];         [[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode b

2012-12-03 13:38:48 658

原创 多个uiwindow 的可见性

一个程序默认只有一个uiwindow 但可以手动添加多个 多个window的互相重叠 window的可见性有问题 应重新设置 [_window makeKeyAndVisible];

2012-12-03 10:27:27 859

原创 如何从json中拿到数据后判断该数据的类型

id tmp = [cellDict objectForKey:@"userhead"];          if ([tmp isKindOfClass:[NSDictionary class]] == YES){ }

2012-11-29 14:58:05 2682

转载 IOS 开发,调用打电话,发短信,打开网址

IOS 开发,调用打电话,发短信,打开网址 1、调用 自带mail [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://admin@hzlzh.com"]];   2、调用 电话phone [[UIApplication sharedApplication] open

2012-11-27 14:45:59 400

原创 获取tableViewCell点击的位置和indexPath

UIButton* coverButton = [UIButton buttonWithType:UIButtonTypeCustom];     coverButton.frame = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height);     [coverButton addTarget:se

2012-11-26 18:59:18 847

原创 ios tableCell 中同时获取点击的位置和所在的indexPath

UITapGestureRecognizer *clickGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(clickGesture:)];     [cell addGestureRecognizer:clickGesture];     [clickGesture release];

2012-11-26 16:02:49 1172

嵌入式入学测试

千锋嵌入式考试题2011年,主要是c语言的内容,还有些编程思想。

2012-04-24

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除