需求:在首页每一分钟发一次请求,将新闻未读数显示到Tabbar上为0时不显示数字,点击首页表格回到最顶端并刷新数据badgeValue不显示
一. 首先需要请求用户授权
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
//设置用户授权显示通知
//获取用户授权显示通知[上方的提示条/声音/BadgeNumber] 分为10以上和以下
//#available 是检测设备版本,如果是10.0以上
if #available(iOS 10.0, *) {
UNUserNotificationCenter.current().requestAuthorization(options: [.alert,.badge,.sound]) { (success, error) in
print("授权" + (success ? "成功":"失败"))
}
}else{
//10.0 以下
let notifySettings = UIUserNotificationSettings(types: [.alert,.badge,.sound], categories: nil)
UIApplication.shared.registerUserNotificationSettings(notifySettings)
}
return true
}
二. 在主控制器MainViewController(即是添加Tabbar的控制器)添加定时器
1.添加定时器属性
var timer : Timer?
2.初始化
override func viewDidLoad() {
super.viewDidLoad()
//scheduledTimer 放入主运行循环
timer = Timer.scheduledTimer(timeInterval: 60.0, target: self, selector: #selector(updateTimer), userInfo: nil, repeats: true)
}
3. 时钟运行方法
@objc private func updateTimer() {
// 注意:count为从服务器请求回来的新闻未读数,这部分不做详细说明
//设置首页 tabBarItem 的badgeNumber 进行判断当为0时为nil不然显示为0
self.tabBar.items?[0].badgeValue = count > 0 ? "\(count)" : nil
//设置app的badgevalue 当为0时候自动不显示 iOS8.0之后需要用户授权之后才能显示
UIApplication.shared.applicationIconBadgeNumber = count
}
4. 点击首页点击首页表格回到最顶端并刷新数据badgeValue不显示
//点击tabbar将要跳转运行的方法
/// 将要选择TabBaItem
/// - Parameters:
/// - tabBarController: tabBarController
/// - viewController: 目标控制器
/// - Returns: 是否切换到目标控制器
func tabBarController(_ tabBarController: UITabBarController, shouldSelect viewController: UIViewController) -> Bool {
//1.获取控制器在数组中的索引
let idx = childViewControllers.index(of: viewController)
//2. 判断当前索引是首页,同是idx也是首页 重复点击首页的按钮
if selectedIndex == 0 && idx == selectedIndex {
print("在首页点击的首页")
//3.让表格滚动到顶部
// a)获取到控制器 (HomeViewController为首页控制器)
let nav = childViewControllers[0] as! UINavigationController
let vc = nav.childViewControllers[0] as! HomeViewController
//b)滚动到顶部。 这里是应做判断如果是iPhoneX 这里不是-64
vc.tableView?.setContentOffset(CGPoint(x:0,y:-64), animated: true)
//4. 刷新数据 - 增加延迟,保证表格先滚动到顶部再刷新 loadData()为HomeViewController请求数据函数
DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + 1, execute: {
vc.loadData()
})
//5.清除tabItem和app的 badgeNumber
vc.tabBarItem.badgeValue = nil
UIApplication.shared.applicationIconBadgeNumber = 0
}
return !viewController.isMember(of: UIViewController.self)
}
5. 销毁时钟
deinit {
//销毁时钟
timer?.invalidate()
}