摘要:
//图片被点击事件,当前第几张图片被点击了,和数组顺序一致 __weak NewsgzzViewController *wself = self;[TopScro setImageViewDidTapAtIndex:^(NSInteger index) { printf("第%zd张图片\... 阅读全文
摘要:
#warning todo 因为看不到界面,不知道算出的效果如何#pragma mark *****command ++ 字体变大一点 command+shift+k 清除 阅读全文
摘要:
// 取出上一条数据 CZMessageFrame *lastMessageFrame = [arrayM lastObject];// 上一条数据 CZMessage *preMessage = lastMessageFrame.message; if... 阅读全文
摘要:
.h#import @interface NSString (Extension)/*** 根据最大尺寸和字体计算文字的实际尺寸*/- (CGSize) sizeWithMaxSize:(CGSize) maxSize andFont:(UIFont *) font;@end.m#import "N... 阅读全文
摘要:
转 KVC中setValuesForKeysWithDictionary:从字典映射到一个对象,这是KVC中的一个方法所提供的,这个方法就是 setValuesForKeysWithDictionary: ,非常好用,不需要你来一一的给对象赋值而直接从字典初始化即可,但用的不好会经常崩溃,本教程就来... 阅读全文
摘要:
/*** 大图功能*/- (IBAction)big {// 1.添加阴影 UIButton *cover = [[UIButton alloc]init]; cover.frame = self.view.bounds; [self.view addSubview:cover]; cov... 阅读全文
摘要:
// 清空上一次的按钮 for (UIButton *answerBtn in self.answerView.subviews) { [answerBtn removeFromSuperview]; }for (UIView *view in cell.contentView.sub... 阅读全文
摘要:
遇到问题不知道怎么处理时就打印错误的日志: description (后台注册医生 感觉) NSLog(@"错误描述 ==%@",error.errorDescription); 阅读全文
摘要:
if (nextLabel == nil) { return; } //缩放文字大小的比例 float scale = ABS(scrollView.contentOffset.x / scrollView.bounds.size.width - self.currentIndex); NSLog( 阅读全文
摘要:
#import "TimeCollectionCell.h" #import typedef void (^ReturnBlock)(NSString *showText);@interface TimeCollectionCell : UICollectionViewCell@property ... 阅读全文
摘要:
//病例种类 button-(void)illcaseBtnClick{ if (isComboBoxHide==NO) { _comboBox.hidden = NO; isComboBoxHide=YES; } else{ _comboBox.hidden = YES; ... 阅读全文
摘要:
如果代理的方法实现了,但是没有进入 可能是 忘记写.****.delegate=self;了(3)app启动后顶部和底部空出黑色区域问题由于设置启动图加载方式为LaunchImage,但是没有给图片导致,系统会根据LaunchImage尺寸来决定显示尺寸,添加LaunchImage后正常显示(4)X... 阅读全文
摘要:
UIButton *btn=(UIButton *)[self.view viewWithTag:10]; 阅读全文
摘要:
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ //打印动画块的位置 NSLog(@"动画执行之前的位置:%@",NSStringFromCGPoint(self.customView.center)); ... 阅读全文