簡體   English   中英

我如何使用RxSwift使我的程序在Swift中具有響應性

[英]How can i make my program reactive in swift with RxSwift

嘿!

我在OSX上,使用最新的xcode版本和iOS的最新版本:

我在測試項目中實現mvvm和反應式編程時遇到一些問題。 對於反應我使用RxSwift庫從這里RxSwift

// so here my implementation of SettingsVC.swift

import UIKit
import SpeedLog
import RxCocoa
import RxSwift
import Eureka

class SettingsVC: FormViewController {
    let viewModel = SettingsVM()

    override func viewDidLoad() {
        super.viewDidLoad()

        self.setupFormer()
    }

    func setupFormer() {
        //        self.tableView?
        //            .rx_setDelegate(self)
        //            .addDisposableTo(disposeBag)
        //        
        //        // Setup Observer


        self.setRegisterAndLoginRows()
        self.setProfileRow()
    }

    func setRegisterAndLoginRows() {
        self.form
            +++= ButtonRow("connectDisconnect") {
                $0.title = "Connexion"
                } .onCellSelection { row in
                    SpeedLog.print((row.cell.textLabel?.text)! + " called")
                    UIViewController.pushModal(self, pushModalTo: PushModalTo.Connection)
            }

            <<< ButtonRow("registration") {
                $0.title = "Inscription"
                } .onCellSelection { row in
                    SpeedLog.print((row.cell.textLabel?.text)! + " called")
                    //UIViewController.pushModal(self, pushModalTo: PushModalTo.Connection)
        }
    }

    func setProfileRow() {
        form
            +++= Section("Mon compte")

            <<< LabelRow("profile") {
                $0.title = "Mon profil"
                $0.value = "Non enregistré"
                let cell = $0
                Session.appUser?.username
                    .asObservable()
                    .subscribeNext { username in
                        if let usernameTemp = username {
                            cell.value = usernameTemp
                        }
                    }
                    .addDisposableTo((Session.appUser?.disposeBag)!)
                } .onCellSelection { row in
                    SpeedLog.print((row.cell.textLabel?.text)! + " called")
                    UIViewController.pushView(self, pushSettingsTo: PushSettingsTo.MyProfile)
        }
    }
}

// my SessionManager

import Foundation
import RxSwift

let Session = SessionManager.sharedInstance

class SessionManager {
    static let sharedInstance = SessionManager()

    var appUser: AppUser?

    init() {
        self.appUser = nil
    }
}

// and my class User, because AppUser just inherit from User

import Foundation
import SpeedLog
import RxSwift

class User {
    var username: Variable<String?> = Variable(nil)
    var accessToken: Variable<String?> = Variable(nil)
    var country: Variable<String?> = Variable(nil)
    var created: Variable<NSDate?> = Variable(nil)
    var disabled: Variable<Bool?> = Variable(nil)
    var displayName: Variable<String?> = Variable(nil)
    var email: Variable<String?> = Variable(nil)
    var emailVerified: Variable<Bool?> = Variable(nil)
    var locale: Variable<LocaleContainer?> = Variable(nil)
    var modified: Variable<NSDate?> = Variable(nil)
    var phoneNumber: Variable<String?> = Variable(nil)
    var phoneVerified: Variable<Bool?> = Variable(nil)
    var userID: Variable<String?> = Variable(nil)
    var picture: Variable<UIImage?> = Variable(nil)
    var pictureURL: Variable<String?> = Variable(nil)
    let disposeBag = DisposeBag()

    func set(kiiUser: KiiUser) {
        self.username.value = kiiUser.username
        self.accessToken.value = kiiUser.accessToken
        self.country.value = kiiUser.country
        self.created.value = kiiUser.created
        self.disabled.value = kiiUser.disabled
        self.displayName.value = kiiUser.displayName
        self.email.value = kiiUser.email
        self.emailVerified.value = kiiUser.emailVerified
        self.locale.value = kiiUser.locale
        self.modified.value = kiiUser.modified
        self.phoneNumber.value = kiiUser.phoneNumber
        self.phoneVerified.value = kiiUser.phoneVerified
        self.userID.value = kiiUser.userID
        self.picture.value = UIImage()
        self.pictureURL.value = String()
    }
}

我已經嘗試僅將Singleton更改為Variable(),但是它不起作用..我讓什么不好? 對不起,我的英語不好 :/

謝謝你的幫助

嘿,

我找到了實現Eureka librarie,rxswift和MVVM的解決方案,我將分享一下:

設置VC

import UIKit
import SpeedLog
import RxCocoa
import RxSwift
import Eureka

class SettingsVC: FormViewController {

private var viewModel: SettingsVM?
private let disposeBag      = DisposeBag()

override func viewDidLoad() {
    super.viewDidLoad()

    self.initUI()
    self.bindViewModel()
}

func initUI() {
    // Settings form rows
    self.form
        +++=    ButtonRow("connectDisconnect")
        <<<     ButtonRow("registration")

    self.form
        +++=    Section("Mon compte")
        <<<     LabelRow("profile")

}

func bindViewModel() {
    self.viewModel = SettingsVM(form: &self.form, vc: self)
} 
}

設置VM

import Foundation
import SpeedLog
import RxCocoa
import RxSwift
import RxViewModel
import Eureka

class SettingsVM: RxViewModel {
// Private
private let disposeBag      = DisposeBag()
let vc:                     SettingsVC
let connectDisconnectRow:   ButtonRow?
let inscriptionRow:         ButtonRow?
let myProfileRow:           LabelRow?

init(inout form: Form, vc: SettingsVC) {
    self.vc = vc
    self.connectDisconnectRow   = form.rowByTag("connectDisconnect")
    self.inscriptionRow         = form.rowByTag("registration")
    self.myProfileRow           = form.rowByTag("profile")
    super.init()

    self.configureCell()
}

func configureCell() {
    // Connexion Disconnect button
    connectDisconnectRow?.baseCell.baseRow.title = "Connexion"
    connectDisconnectRow?.onCellSelection { cell, row in
        SpeedLog.print((row.cell.textLabel?.text)! + " called")
        UIViewController.pushModal(self.vc, pushModalTo: PushModalTo.Connection)
    }

    // Inscription button
    inscriptionRow?.baseCell.baseRow.title = "Inscription"
    inscriptionRow?.onCellSelection { cell, row in
        SpeedLog.print((row.cell.textLabel?.text)! + " called")
        UIViewController.pushModal(self.vc, pushModalTo: PushModalTo.Registration)
    }

    // My profile button
    myProfileRow?.baseCell.baseRow.title = "Mon profil"
    myProfileRow?.baseCell.baseRow.baseValue = "Non enregistré"

    _ = Session.appUser.displayName.asObservable().subscribeNext { displayName in
        if displayName != "" && displayName != nil {
            self.myProfileRow?.baseCell.baseRow.baseValue = displayName
        }
        self.myProfileRow?.baseCell.baseRow.reload()
    }
    myProfileRow?.onCellSelection { cell, row in
        SpeedLog.print((row.cell.textLabel?.text)! + " called")
        UIViewController.pushView(self.vc, pushSettingsTo: PushSettingsTo.MyProfile)
    }
}
}

我希望它能幫助所有想要實現這些目標的人:)再見

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM