上一页 1 ··· 3 4 5 6 7 8 下一页

2016年3月30日

摘要: 终于知道为什么要设置OverFlow:Hidden了, 看代码: 如果不设置OverFlow:Hidden, wrapper会默认伸开到图片的大小。 如果设置了,那么图片就会剪切到wrapper的宽度。 阅读全文
posted @ 2016-03-30 17:01 I'm new 阅读(216) 评论(0) 推荐(0) 编辑
 

2016年3月23日

摘要: I face the same issue too,I solve it by this: First, I reCreate my team develop certificate(Because we renewed our root certificate) 2、 edit the Iphon 阅读全文
posted @ 2016-03-23 13:43 I'm new 阅读(1095) 评论(0) 推荐(0) 编辑
 

2016年3月9日

摘要: //计算总共字数和限制字数的Index位置 -(NSMutableArray *) unicodeLengthOfString: (NSString *) text { NSMutableArray *array = [NSMutableArray array]; float asciiLength 阅读全文
posted @ 2016-03-09 16:00 I'm new 阅读(690) 评论(0) 推荐(0) 编辑
 

2016年1月22日

摘要: .column{ position: relative; float: left; padding: 30px 0; width: 25%; z-index: 0; background-color: orange; text-align: center;}... 阅读全文
posted @ 2016-01-22 17:09 I'm new 阅读(2285) 评论(0) 推荐(0) 编辑
 

2015年11月25日

摘要: - (void)textViewDidChange:(UITextView *)textView{ NSString *temp=textView.text; //字数超过限制数量时,进行截取替换 if([[textView text] length] > _limitCharact... 阅读全文
posted @ 2015-11-25 11:44 I'm new 阅读(212) 评论(0) 推荐(0) 编辑
 
摘要: [_mapView removeFromSuperview]; [self addSubview:_tableView]; //应将self.view设置为翻转对象 [UIView transitionWithView:self duration:1.0 options:UI... 阅读全文
posted @ 2015-11-25 11:41 I'm new 阅读(201) 评论(0) 推荐(0) 编辑
 
摘要: self.automaticallyAdjustsScrollViewInsets = NO;需设置这个属性 阅读全文
posted @ 2015-11-25 11:39 I'm new 阅读(131) 评论(0) 推荐(0) 编辑
 
摘要: //先释放之前的 YK_RELEASE_SAFELY(_selectedDate); //retain新的 _selectedDate = [aDate retain];NSString 属性的好像不需要先Retain 阅读全文
posted @ 2015-11-25 11:37 I'm new 阅读(193) 评论(0) 推荐(0) 编辑
 
摘要: +(UIButton *)getBlueButtonWithTitle:(NSString *)aTitle{ UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom]; //要使用系统的变灰,只需设置Backgroun... 阅读全文
posted @ 2015-11-25 11:34 I'm new 阅读(2340) 评论(0) 推荐(0) 编辑
 

2015年11月5日

摘要: 正确效果如图:下面的toolBar应该看不见它下面的View,避免方法:[self.view addSubView:aSubView];这个aSubView一定不能设置不透明度,应将其设置为ClearCorlor,然后在aSubView中设置BackgroundView,将backgroundVie... 阅读全文
posted @ 2015-11-05 13:24 I'm new 阅读(454) 评论(0) 推荐(0) 编辑
 
上一页 1 ··· 3 4 5 6 7 8 下一页