最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

swift在IOS應(yīng)用圖標(biāo)上添加提醒個數(shù)的方法

 更新時間:2016年08月18日 16:03:28   作者:JackWang-CUMT  
本文是通過swift語言實(shí)現(xiàn)在應(yīng)用圖標(biāo)右上角添加消息個數(shù)提醒的功能,非常不錯,具有參考借鑒價(jià)值,感興趣的朋友一起看下吧

在應(yīng)用圖標(biāo)右上角添加消息數(shù)提醒,可以很方便的告知用戶該應(yīng)用中有無新消息需要處理。下面用xcode 7.3.1來簡要說明一下如何用swift語言進(jìn)行此功能的實(shí)現(xiàn)。

1、修改 AppDelegate.swift

//
// AppDelegate.swift
// RainbowDemo
//
// Created by Jackwang on 16/8/17.
// Copyright © 2016年 Jackwang . All rights reserved.
//
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
// Override point for customization after application launch.
//使用UILocalNotification除了可以實(shí)現(xiàn)本地消息的推送功能(可以設(shè)置推送內(nèi)容,推送時間,提示音),
//還可以設(shè)置應(yīng)用程序右上角的提醒個數(shù)。
let settings = UIUserNotificationSettings(forTypes: [.Alert, .Badge, .Sound],
categories: nil)
application.registerUserNotificationSettings(settings)
return true
}
func applicationWillResignActive(application: UIApplication) {
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
// Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}
func applicationDidEnterBackground(application: UIApplication) {
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}
func applicationWillEnterForeground(application: UIApplication) {
// Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
}
func applicationDidBecomeActive(application: UIApplication) {
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}
func applicationWillTerminate(application: UIApplication) {
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}
}

2 修改在ViewController.swift

//
// ViewController.swift
// RainbowDemo
//
// Created by jackwang on 16/8/17.
// Copyright © 2016年 jackwang. All rights reserved.
//
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
//發(fā)送通知消息
scheduleNotification();
}
//發(fā)送通知消息
func scheduleNotification(){
//清除所有本地推送
UIApplication.sharedApplication().cancelAllLocalNotifications()
//創(chuàng)建UILocalNotification來進(jìn)行本地消息通知
let localNotification = UILocalNotification()
//設(shè)置應(yīng)用程序右上角的提醒個數(shù)
localNotification.applicationIconBadgeNumber = 8;
UIApplication.sharedApplication().scheduleLocalNotification(localNotification)
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}

3 編譯運(yùn)行

第一次會彈出詢問是否允許推送消息,確認(rèn)后,第二次運(yùn)行該app后,會在圖標(biāo)右上角標(biāo)注消息數(shù),如下圖所示:

修改APP的顯示名稱,可以單擊info.plist,然后修改器Bundle name,如下圖所示:

以上所述是小編給大家介紹的swift在IOS應(yīng)用圖標(biāo)上添加提醒個數(shù)的方法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!

相關(guān)文章

  • swift實(shí)現(xiàn)隨機(jī)背景色

    swift實(shí)現(xiàn)隨機(jī)背景色

    這篇文章主要為大家詳細(xì)介紹了swift實(shí)現(xiàn)隨機(jī)背景色,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2022-01-01
  • Swift網(wǎng)絡(luò)請求庫Alamofire使用詳解

    Swift網(wǎng)絡(luò)請求庫Alamofire使用詳解

    這篇文章主要為大家詳細(xì)介紹了Swift網(wǎng)絡(luò)請求庫Alamofire的使用方法,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-08-08
  • SwiftUI智能家居開關(guān)燈頁面搭建示例

    SwiftUI智能家居開關(guān)燈頁面搭建示例

    這篇文章主要為大家介紹了SwiftUI智能家居開關(guān)燈頁面搭建示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-08-08
  • Swift能代替Objective-C嗎?

    Swift能代替Objective-C嗎?

    這是我在網(wǎng)上上看到的答案,復(fù)制粘貼過來和大家分享一下,因?yàn)槲液秃芏嗳艘粯雍荜P(guān)心Swift的出現(xiàn)對Mac開發(fā)的影響和對Objective-C的影響。
    2014-09-09
  • Swift語言實(shí)現(xiàn)地圖坐標(biāo)彈跳動畫

    Swift語言實(shí)現(xiàn)地圖坐標(biāo)彈跳動畫

    這篇文章主要介紹了用Swift語言實(shí)現(xiàn)地圖坐標(biāo)彈跳動畫的方法主要應(yīng)用iOS7來實(shí)現(xiàn)此功能,需要的朋友可以參考下
    2015-07-07
  • Swift繼承Inheritance淺析介紹

    Swift繼承Inheritance淺析介紹

    繼承我們可以理解為一個類獲取了另外一個類的方法和屬性。當(dāng)一個類繼承其它類時,繼承類叫子類,被繼承類叫超類(或父類),在Swift中,類可以調(diào)用和訪問超類的方法,屬性和下標(biāo)腳本,并且可以重寫它們。我們也可以為類中繼承來的屬性添加屬性觀察器
    2022-08-08
  • Swift使用enum抹平數(shù)組元素差異實(shí)例詳解

    Swift使用enum抹平數(shù)組元素差異實(shí)例詳解

    這篇文章主要為大家介紹了Swift使用enum抹平數(shù)組元素差異實(shí)例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-11-11
  • 在?Swift?中編寫Git?Hooks腳本的方法

    在?Swift?中編寫Git?Hooks腳本的方法

    在本例中,我使用了?commit-msg?鉤子,它能夠在當(dāng)前提交信息生效前修改此信息,鉤子由一個參數(shù)調(diào)用,該參數(shù)是指向包含用戶輸入的提交消息的文件的路徑,這意味著,為了改變提交消息,我們只需要從文件中讀取、修改其內(nèi)容,然后寫回調(diào)用掛鉤的文件
    2022-06-06
  • swift4 使用DrawerController實(shí)現(xiàn)側(cè)滑菜單功能的示例代碼

    swift4 使用DrawerController實(shí)現(xiàn)側(cè)滑菜單功能的示例代碼

    這篇文章主要介紹了swift4 使用DrawerController實(shí)現(xiàn)側(cè)滑功能的示例代碼,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2018-06-06
  • 淺談Swift派發(fā)機(jī)制

    淺談Swift派發(fā)機(jī)制

    派發(fā)目的是讓 CPU 知道被調(diào)用的函數(shù)在哪里。Swift 語言是支持編譯型語言的直接派發(fā),函數(shù)表派發(fā)和消息機(jī)制派發(fā)三種派發(fā)方式的,下面分別對這三種派發(fā)方式說明下。
    2021-06-06

最新評論

商城县| 富源县| 武隆县| 邮箱| 徐水县| 二连浩特市| 满城县| 汽车| 广灵县| 景谷| 明星| 潮安县| 商丘市| 长岭县| 古交市| 琼中| 韶关市| 肇源县| 米泉市| 石屏县| 嘉鱼县| 古交市| 涟源市| 景宁| 丹江口市| 白山市| 九龙县| 进贤县| 林芝县| 南城县| 商都县| 濮阳市| 麟游县| 军事| 庆安县| 墨玉县| 广东省| 桑日县| 固镇县| 金堂县| 曲靖市|