一边开发,一边记录,不积小流无以成江海~~每26条换一篇文章。
1、使用pch文件,要修改project文件里的buildingSettings里的Prefix Header,本来为空白的,改成‘工程名/pch文件名.pch’
2、使用Cocopods:
gem sources --remove https://rubygems.org/ -> gem sources -a https://ruby.taobao.org/ -> sudo gem install cocoapods -> 输入密码 -> 等待过后 -> cd 文件路径(随便创建的Xcode工程) -> ls -> open pod file -> 添加想要pod进去的类库 pod ‘类库名’ -> pod install --verbose --no-repo-update
搞定
3、tableView的section HeaderView的高度最小不能为0,而是0.1
4、设置按钮的文字居右。
[button setContentHorizontalAlignment:UIControlContentHorizontalAlignmentRight];
5、小数点保留一位数:
return[NSStringstringWithFormat:@"收听人数:%.1lf万人",(double)[selftopModelForRow:row].radioPlayCount/10000];
%.nlf,n就是保留几位小数,double强转一下。
6、 后台播放音频设置
AVAudioSession *session = [AVAudioSession sharedInstance];
[session setActive:YES error:nil];
[session setCategory:AVAudioSessionCategoryPlayback error:nil];
7、至于如何获取IOS系统版本号通过如下可获取
#define IOS_VERSION [[[UIDevice currentDevice] systemVersion] floatValue]
8、点击button切换不同的图片,再次点击切换回来
[_playerBtn setBackgroundImage:[UIImage imageNamed:@"图片名1"] forState:UIControlStateNormal];
[_playerBtn setBackgroundImage:[UIImage imageNamed:@"图片名2"] forState:UIControlStateSelected];
[_playerBtn setSelected:NO];
[_playerBtn addTarget:self action:@selector(playRadio) forControlEvents:UIControlEventTouchUpInside];
//点击事件
- (void)playRadio{
_playerBtn.selected = !_playerBtn.selected;//这是重点
}
9、如果要加载一个视图在全局的所有view上,那就[_window addSubview:_view];
10、滑动的时候隐藏navigation bar
navigationController.hidesBarsOnSwipe = Yes;
11、消除导航条返回键带的title
[[UIBarButtonItem appearance] setBackButtonTitlePositionAdjustment:UIOffsetMake(0, -60) forBarMetrics:UIBarMetricsDefault];
12、将Navigationbar变成透明而不模糊
[self.navigationController.navigationBar setBackgroundImage:[UIImage new]
forBarMetrics:UIBarMetricsDefault];
self.navigationController.navigationBar .shadowImage = [UIImage new];
self.navigationController.navigationBar .translucent = YES;
13、static
函数体内 static 变量的作用范围为该函数体,不同于 auto 变量,该变量的内存只被分配一次,因此其值在下次调用时仍维持上次的值;在模块内的 static 全局变量可以被模块内所用函数访问,但不能被模块外其它函数访问;在模块内的 static 函数只可被这一模块内的其它函数调用,这个函数的使用范围被限制在声明它的模块内;在类中的 static 成员变量属于整个类所拥有,对类的所有对象只有一份拷贝;在类中的 static 成员函数属于整个类所拥有,这个函数不接收 this 指针,因而只能访问类的static 成员变量。
14、拉伸图片不变形
[[UIImage imageNamed:@""] stretchableImageWithLeftCapWidth:10 topCapHeight:10];
[[UIImage imageNamed:@""] resizableImageWithCapInsets:UIEdgeInsetsMake(10, 10, 10, 10)];
15、FLAnimatedImage可以帮你完成GIF的显示处理。解决GIF显示卡顿的情况。
FLAnimatedImage *image = [FLAnimatedImage animatedImageWithGIFData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@"https://upload.wikimedia.org/wikipedia/commons/2/2c/Rotating_earth_%28large%29.gif"]]];
FLAnimatedImageView *imageView = [[FLAnimatedImageView alloc] init];
imageView.animatedImage = image;
imageView.frame = CGRectMake(0.0, 0.0, 100.0, 100.0);
[self.view addSubview:imageView];
16、自定义了leftBarbuttonItem左滑返回手势失效了怎么办?
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc]
initWithImage:img
style:UIBarButtonItemStylePlain
target:self
action:@selector(onBack:)];
self.navigationController.interactivePopGestureRecognizer.delegate = (id)self;
17、怎么点击self.view就让键盘收起,需要添加一个tapGestures么 ? NO
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
[self.view endEditing:YES];
}
18、改变textfield的placeholder的属性
textField.placeholder=@"请选择省份";
[textField setValue:[UIColor redColor]forKeyPath:@"_placeholderLabel.textColor"]; [textField setValue:[UIFont boldSystemFontOfSize:16]forKeyPath:@"_placeholderLabel.font"];
下面设置属性的两行一定要加在第一行的后面,才有效。
19、tableView采用group的style,tableView的sectionHeadView下拉时候不会固定在上方,而plain的style会固定在上方。
20、tableView刷新section的带动画方法
NSIndexSet*sectionIndex = [NSIndexSet indexSetWithIndex:1];
[self.mainTableView reloadSections:sectionIndexwithRowAnimation:UITableViewRowAnimationFade];
mainTableView是section的tableView,“1”指的是刷新的那个section的index
21、取消tableViewCell点击的动画,但不禁止cell上的控件点击
sensibilityCell.selectionStyle=UITableViewCellSelectionStyleNone;
22、判断是否为gif/png图片的正确姿势
//通过图片Data数据第一个字节 来获取图片扩展名
- (NSString *)contentTypeForImageData:(NSData *)data {
uint8_t c;
[data getBytes:&c length:1];
switch(c) {
case0xFF:
return@"jpeg";
case0x89:
return@"png";
case0x47:
return@"gif";
case0x49:
case0x4D:
return@"tiff";
case0x52:
if([data length] < 12) {
returnnil;
}
NSString *testString = [[NSString alloc] initWithData:[data subdataWithRange:NSMakeRange(0, 12)] encoding:NSASCIIStringEncoding];
if([testString hasPrefix:@"RIFF"] && [testString hasSuffix:@"WEBP"]) {
return @"webp";
}
return nil;
}
return nil;
}
//假设这是一个网络获取的URL
NSString *path = @"http://pic.rpgsky.net/images/2016/07/26/3508cde5f0d29243c7d2ecbd6b9a30f1.png";
NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:path]];
//调用获取图片扩展名
NSString *string = [self contentTypeForImageData:data];
//输出结果为 png
NSLog(@"%@",string);
23、如果在xib中有一个控件, 已经明确设置尺寸了,输出的frame也是对的, 但是显示出来的效果不一样(比如尺寸变大了), 如果是这种情况一般就是autoresizingMask自动伸缩属性在搞鬼! 解决办法如下:
//xib的awakeFromNib方法中设置UIViewAutoresizingNone进行清空
- (void)awakeFromNib {
self.autoresizingMask = UIViewAutoresizingNone;
}
24、在继承UITableViewCell的类里打印cell的宽度和高度会得到一个固定的值(320,44),所以如果你把控件的宽度宏定义为cell的宽高百分比,运行的结果会与你想象不同,所以你要把加载控件的代码放在这个方法里,就可以正确显示。
- (void)layoutSubviews;
25、 由于IOS8中定位的授权机制改变 需要进行手动授权(导致程序无法进行定位的主要原因)
if([[UIDevicecurrentDevice].systemVersionfloatValue] >= 8) {
locationManager = [[CLLocationManageralloc]init];
[locationManagerrequestAlwaysAuthorization];
[locationManagerrequestWhenInUseAuthorization];
}
26、tableView让横线从最左边开始
//去掉分割线左边的空白
cell.separatorInset=UIEdgeInsetsZero;
cell.layoutMargins=UIEdgeInsetsZero;
cell.preservesSuperviewLayoutMargins=NO;//栏外,空白
网友评论