美文网首页
iOS 远程推送关闭开启功能

iOS 远程推送关闭开启功能

作者: 本雍正专治bug | 来源:发表于2019-02-01 15:59 被阅读0次

    开启远程推送

    //NS_AVAILABLE_IOS(8_0)
    [[UIApplication sharedApplication] registerForRemoteNotifications];
    

    关闭远程推送

    //NS_AVAILABLE_IOS(3_0)
    [[UIApplication sharedApplication] unregisterForRemoteNotifications];
    

    获取tableView(collection)中某一个cell相对于屏幕的frame

    获取cell相对于tableView的frame
    CGRect rectInTableView = [tableView rectForRowAtIndexPath:indexPath];
     获取相对于self.view的frame
    CGRect rect = [tableView convertRect:rectInTableView toView:[tableView superview]]; 
    
    
    CGRect cellInCollection = [_collection convertRect:cell.frame toView:_collection];
    //获取cell在当前屏幕的位置
    CGRect cellInSuperview =  [_collection convertRect:cellInCollection toView:self.view];
    

    相关文章

      网友评论

          本文标题:iOS 远程推送关闭开启功能

          本文链接:https://www.haomeiwen.com/subject/opsdsqtx.html