Пользователь по умолчанию Swift - PullRequest
2 голосов
/ 28 января 2020

У меня есть подсказка (подсказка). И я хочу, чтобы это отображалось в моем приложении 1 раз за приложение загрузки. Когда пользователь загружает приложение, эта подсказка отображается, а затем закрывается. Когда пользователь удаляет приложение и снова загружает всплывающую подсказку, оно должно снова работать.

let options: AMTooltipViewOptions = .init(textColor: Color.guideSubTitle,
                                                  textBoxBackgroundColor: Color.guideScreenBackground,
                                                  textBoxCornerRadius: 8,
                                                  lineColor: Color.guideScreenBackground,
                                                  lineHeight: 15,
                                                  dotSize: 0,
                                                  focusViewRadius: 15,
                                                  focustViewVerticalPadding: 0,
                                                  focustViewHorizontalPadding: 0)
        AMTooltipView(options: options,
                      message: Localizable.scan_open_from_gallery + "\n" + Localizable.scan_clear,
                      focusView: content.openGalleryBtn, target: self)

, и у меня есть ключ

public var hintView: Bool {
        get {
            return setting.bool(forKey: Key.hintView)
        }
        set {
            setting.set(false, forKey: Key.hintView)
        }
    }

Как я могу контролировать, когда пользователь удаляет приложение и снова загружает его

Ответы [ 3 ]

2 голосов
/ 28 января 2020

Храните бул в UserDefaults. Как только пользователь удалит приложение, данные будут удалены.

в вашем AppDelegate.swift

let DEFAULTS = UserDefaults.standard
var isUserFirstTime = !DEFAULTS.bool(forKey: "isUserFirstLogin") // by default it will store false, so when the user opens the app for first time, isUserFirstTime = true.

, затем в вашей didFinishLaunchingWithOptions функции

 if isUserFirstTime {
     // your code here to show toolbar
        } else {
            // dont show toolbar
        }
  // once you have completed the operation, set the key to true. 
  DEFAULTS.set(true, forKey: "isUserFirstLogin")
1 голос
/ 28 января 2020

Измените свой геттер и сеттер на hintView, как показано ниже

public var hintView: Bool {
    get {
        return setting.bool(forKey: Key.hintView)
    }
    set {
        setting.set(true, forKey: Key.hintView)
        setting.synchronize()
    }
}

А теперь используйте переменную hintView, как показано ниже, для отображения и скрытия панели инструментов.

//it will always returns false for first time when you install new app.
if hintView {
   print("Hide Toolbar")
}
else {
   //set flag to true for first time install application.
   hintView = true
   print("Show Toolbar")
}

I надеюсь, вам станет понятнее

0 голосов
/ 29 января 2020
import Foundation
import AMTooltip

class HintViewController {

    let userDefaults: UserDefaults = .standard

    let wasLaunchedBefore: Bool

    var isFirstLaunch: Bool {
        return !wasLaunchedBefore
    }

    init() {
        let key = "wasLaunchBefore"
        let wasLaunchedBefore = userDefaults.bool(forKey: key)
        self.wasLaunchedBefore = wasLaunchedBefore
        if !wasLaunchedBefore {
            userDefaults.set(true, forKey: key)
        }

    }

     func showHintView(message: String!, focusView: UIView, target: UIViewController) {

        let options: AMTooltipViewOptions = .init(textColor: Color.guideSubTitle,
                                            textBoxBackgroundColor: Color.guideScreenBackground,
                                            textBoxCornerRadius: 8,
                                            lineColor: Color.guideScreenBackground,
                                            lineHeight: 15,
                                            dotSize: 0,
                                            focusViewRadius: 15,
                                            focustViewVerticalPadding: 0,
                                            focustViewHorizontalPadding: 0)

           AMTooltipView(options: options, message: message, focusView: focusView, target: target)
       }
}
...