一些小技巧(跳往设置,App Store评分)

判断用户有没有开通知,跳往应用设置页面

1.判断有没有开通知

 if ([[UIApplication sharedApplication] currentUserNotificationSettings].types  == UIRemoteNotificationTypeNone) {
   //推送未授权 跳往设置页面
   [[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];
}else{
   //推送已授权
 }

2.设置完返回APP�时自动刷新页面上的提示�

-(void)viewWillAppear:(BOOL)animated{
    [super viewWillAppear:animated];
     [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationWillEnterForeground)name:UIApplicationWillEnterForegroundNotification object:nil];
}

- (void)applicationWillEnterForeground{
   //UI修改
}

- (void)viewDidDisappear:(BOOL)animated{
    [[NSNotificationCenter defaultCenter] removeObserver:self];
}

倒计时字体抖动

3.字体没有等宽导致字体抖动

//Helvetica Neue Courier New、 Courier 和 _typewriter
timeLabel.font =[UIFont fontWithName:@"Helvetica Neue" size:12*kWidthScale];
跳往APP Store评分(适配ios11)
 NSString *str;
 if (iOS11) {
     str = [NSString stringWithFormat: @"itms-apps://itunes.apple.com/cn/app/id%@?mt=8&action=write-review", CDAPPID];
 }else{
     str = [NSString stringWithFormat: @"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=%@&pageNumber=0&sortOrdering=2&type=Purple+Software&mt=8", CDAPPID];
}
        
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
iOS 11刷新跳动 pop回来跳动?直接在appdelegate设置
if (@available(iOS 11.0, *)) {
    UITableView.appearance.estimatedRowHeight = 0;
    UITableView.appearance.estimatedSectionFooterHeight = 0;
    UITableView.appearance.estimatedSectionFooterHeight = 0;
}
CollectionView 怎么实现悬停的header?

GitHub

设置scrollview之后错位-edgesForExtendedLayout

edgesForExtendedLayout指定边缘要延伸的方向,它的默认值很自然地是UIRectEdgeAll,四周边缘均延伸,就是说,如果即使视图中上有navigationBar,下有tabBar,那么视图仍会延伸覆盖到四周的区域
作用 : 1 .当有导航控制器的时候 00点 顶着导航 2 . 没有导航控制器的时候是顶着屏幕的00点及最高点

// edgesForExtendedLayout为 UIRectEdgeNone 时候,这时候tableView 不会延伸到 navigationBar下面,但是我们需要去调整tableView的高度
//一般情况的话我们不让tableView延展到navigation下,这时候设置UIRectEdgeNone的话,也会很方便我们设置其他一般控件的坐标为00
self.edgesForExtendedLayout = UIRectEdgeNone ;

automaticallyAdjustsScrollViewInsets 默认为yes,自动调整scrollView显示内容不会被navigationbar遮住

两者都默认的话 tableView显示正常,但是如果navigationbar 和 tabbar半透明,tableview设置的背景图 背景颜色会透过半透明显示,tableView滑动会穿过navigationbar,其他控件坐标设置为00的话都会顶着状态栏往下

automaticallyAdjustsScrollViewInsets为no时,tableview显示内容会和坐标点一样,不会去做自动调整。如果我们去设置tableView宽高和屏幕宽高相等时,tableView宽高占满整个屏幕,即会被navigationbar和tabbar遮住

给UITextView添加placeholder
UITextView *textView = [[UITextView alloc] initWithFrame:CGRectMake(0, 200, [UIScreen mainScreen].bounds.size.width, 300)];
textView.font = [UIFont systemFontOfSize:15];
textView.backgroundColor = [[UIColor cyanColor] colorWithAlphaComponent:0.5];
[self.view addSubview:textView];
    
 // placeholder
UILabel *label = [UILabel new];
label.font = textView.font;
label.text = @"我就是占位怎么了";
label.numberOfLines = 0;
label.textColor = [UIColor lightGrayColor];
[label sizeToFit];
[textView addSubview:label];
// kvc
[textView setValue:label forKey:@"_placeholderLabel"];
隐藏分割线
//隐藏全部分割线
self.tabelV.separatorColor = UITableViewCellSelectionStyleNone;
//隐藏多余的分割线
self.tabelV.tableFooterView = [UIView new];
cell高度自适应

iOS7.0之后,我们可以用SB或XIB来约束cell里面的label,然后把numberOfLines设置为0 , 再加上下面2行代码,就不用计算cell的高度了:

self.tableView.rowHeight =UITableViewAutomaticDimension;
self.tableView.estimatedRowHeight = 44.0;
section去粘性

有时候使用UITableView所实现的列表,会使用到section,但是又不希望它粘在最顶上而是跟随滚动而消失或者出现,下面的代码片段就是实现此功能:
sectionHeaderHeight 的值要根据自己的而定 tableView 如果一个类里有多个表格,要明确指明要去掉哪一个表格头的粘性

-(void)scrollViewDidScroll:(UIScrollView *)scrollView{
if (scrollView == self.tableView) {
    CGFloat height = sectionHeaderHeight;
    if (scrollView.contentOffset.y <= height && scrollView.contentOffset.y > 0) {
        scrollView.contentInset = UIEdgeInsetsMake(-scrollView.contentOffset.y, 0, 0, 0);
        NSLog(@"1...%f",scrollView.contentOffset.y);
    }
    else if(scrollView.contentOffset.y >= height){
        scrollView.contentInset = UIEdgeInsetsMake(-height, 0, 0, 0);
        NSLog(@"2...%f",scrollView.contentOffset.y);
    }
}

}

此外也可以设置tableview的headerview

self.tableView.tableHeaderView=你的view;

详情

UINavigationBar自定义返回的文字

在上一级页面设置

//push到下一级时候返回键显示的文字
UIBarButtonItem *temporaryBarButtonItem = [[UIBarButtonItem alloc] init];
temporaryBarButtonItem.title = @"返回";
self.navigationItem.backBarButtonItem = temporaryBarButtonItem;

然后push到下一级页面的时候UINavigationBar的文字就不是默认的上一级页面标题

显示隐藏TabBar标签

很多时候,我们推出下一级页面的时候都需要隐藏tarbar

如果是使用系统的tabbar,可以在navigation推出下个视图控制器时使用

self.hidesBottomBarWhenPushed = YES ;
[self.navigationController pushViewController:[[NextViewController alloc]init] animated:YES];

而且要在下面方法中再显示出来

-(void)viewWillDisappear:(BOOL)animated{
  self.hidesBottomBarWhenPushed = NO;
}
设置Navi的文字格式
[self.navigationController.navigationBar setTitleTextAttributes:@{NSFontAttributeName:[UIFont systemFontOfSize:17],NSForegroundColorAttributeName:[UIColor whiteColor]}];
self.edgesForExtendedLayout = UIRectEdgeNone ;
矫正TabBar图片位置,使之垂直居中显示
CGFloat offset = 5.0; 
for (UITabBarItem *item in self.tabbar.items){ 
item.imageInsets = UIEdgeInsetsMake(offset, 0, -offset, 0); 
}
项目中加载图片时因为图片地址中有特殊字符,导致图片无法加载
NSString *urlStr = [url stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]];
清空userdefault的所有内容
NSString*appDomain = [[NSBundle mainBundle]bundleIdentifier];
[[NSUserDefaults standardUserDefaults]removePersistentDomainForName:appDomain];
TableView分隔线全部补全,也就是顶到头
 #pragma mark 补全分隔线的方法
 -(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
   if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
   [cell setSeparatorInset:UIEdgeInsetsZero]; } 
  if ([cell respondsToSelector:@selector(setPreservesSuperviewLayoutMargins:)]) {     

  [cell setPreservesSuperviewLayoutMargins:NO]; } 
  if ([cell respondsToSelector:@selector(setLayoutMargins:)]) { 
  [cell setLayoutMargins:UIEdgeInsetsZero]; }}
去掉导航栏底部黑线
navBarHairlineImageView = [self findBarLineImageViewUnder:self.navigationController.navigationBar];
navBarHairlineImageView.hidden = YES;

方法

- (UIImageView *)findBarLineImageViewUnder:(UIView *)view {
    if ([view isKindOfClass:UIImageView.class] && view.bounds.size.height <= 1.0) {
        return (UIImageView *)view;
    }
    for (UIView *subview in view.subviews) {
        UIImageView *imageView = [self findBarLineImageViewUnder:subview];
        if (imageView) {
            return imageView;
        } }
    return nil;}
判断工作日
    NSCalendar *calendar = [NSCalendar currentCalendar];
    NSDateComponents *components = [calendar components:NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay | NSCalendarUnitHour | NSCalendarUnitMinute fromDate:[NSDate date]];
    NSInteger month =components.month;
    NSInteger days =components.day;
    NSString *urlStrig = [NSString stringWithFormat:@"https://tiansh.github.io/gzr/2020/%ld/%ld.json",(long)month,(long)days];
    NSURL *url = [NSURL URLWithString:urlStrig];
    NSURLRequest *request = [NSURLRequest requestWithURL:url];//默认为GET

    //同步请求
    NSURLResponse *response = nil;
    //异步请求
    [NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse * _Nullable response, NSData * _Nullable data, NSError * _Nullable connectionError) {
        NSString *receiveStr = [[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding];
        
        NSData * datas = [receiveStr dataUsingEncoding:NSUTF8StringEncoding];
        
        NSDictionary *jsonDict = [NSJSONSerialization JSONObjectWithData:datas options:NSJSONReadingMutableLeaves error:nil];
        if ([[[jsonDict valueForKey:@"isWorkday"]stringValue] isEqualToString:@"1"]) {
            //do somethings
        }
        
    }];

---------------------持续更新

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 201,924评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,781评论 2 378
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,813评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,264评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,273评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,383评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,800评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,482评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,673评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,497评论 2 318
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,545评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,240评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,802评论 3 304
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,866评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,101评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,673评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,245评论 2 341

推荐阅读更多精彩内容