iOS 远程推送关闭开启功能

开启远程推送

//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 远程推送关闭开启功能)