簡體   English   中英

Swift - 從另一個類訪問數組

[英]Swift - access array from another class

在我的項目中,我有一個array ,用戶可以在其中添加元素。 我現在的問題是我有另一個帶有tableView class ,我想在其中動態顯示所有elements因此如果用戶將element添加到array它也在我的tableView

A級

var wishListTitlesArray: [String] = [String]()

B級

var dropDownOptions = [String]() // TableView data -> here I would like to access `wishListTitlesArray`

更新

所以感謝到目前為止的評論,我得到了我遇到的主要問題,但我仍在掙扎。

我的設置:

我在我的ViewController-Class中創建了我的dropDownButton (其中包含一個dropDownView ),我也有我的var wishListTitlesArray

我試過dropDownButton.dropView.dropDownOptions = wishListTitlesArray 然而,這並不能完成全部工作。

@objc func addWishButtonTapped(notification : Notification){

    popUpView.popUpTextField.text = ""
    self.popUpView.popUpTextField.becomeFirstResponder()

    view.addSubview(visualEffectView)
    view.addSubview(popUpView)
    view.addSubview(wishButton)
    self.view.addSubview(dropDownButton)


    // constrain blurrEffectView
    visualEffectView.leftAnchor.constraint(equalTo: view.leftAnchor).isActive = true
    visualEffectView.rightAnchor.constraint(equalTo: view.rightAnchor).isActive = true
    visualEffectView.topAnchor.constraint(equalTo: view.topAnchor).isActive = true
    visualEffectView.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true

    // constrain popUpView
    popUpView.centerXAnchor.constraint(equalTo: view.centerXAnchor).isActive = true
    popUpView.centerYAnchor.constraint(equalTo: view.centerYAnchor, constant: -50).isActive = true
    popUpView.heightAnchor.constraint(equalToConstant: 230).isActive = true
    popUpView.widthAnchor.constraint(equalToConstant: view.frame.width - 85).isActive = true

    // constrain wishButton
    wishButton.centerXAnchor.constraint(equalTo: popUpView.centerXAnchor).isActive = true
    wishButton.centerYAnchor.constraint(equalTo: popUpView.centerYAnchor, constant: 70).isActive = true
    wishButton.heightAnchor.constraint(equalToConstant: 72).isActive = true
    wishButton.widthAnchor.constraint(equalToConstant: 72).isActive = true

    // constrain DropDownButton
    dropDownButton.centerXAnchor.constraint(equalTo: self.popUpView.centerXAnchor).isActive = true
    dropDownButton.centerYAnchor.constraint(equalTo: self.popUpView.centerYAnchor).isActive = true
    dropDownButton.widthAnchor.constraint(equalToConstant: 100).isActive = true
    dropDownButton.heightAnchor.constraint(equalToConstant: 40).isActive = true

    // set the drop down menu's options
    dropDownButton.dropView.dropDownOptions = wishListTitlesArray



    self.view.bringSubviewToFront(visualEffectView)
    self.view.bringSubviewToFront(popUpView)
    self.view.bringSubviewToFront(wishButton)
    self.view.bringSubviewToFront(dropDownButton)
    self.view.bringSubviewToFront(dropDownButton.dropView)

這是用戶可以向wishListTitlesArray添加元素的wishListTitlesArray

if let txt = listNameTextfield.text {

        self.newListTextfield.resignFirstResponder()

        // append user-entered text to the data array
        self.wishListTitlesArray.append(txt)
        self.wishListImagesArray.append(self.image!)

        // DonMag3 - append new empty wish array
        self.userWishListData.append([Wish]())

        let theCustomWishlistView = createCustomWishlistView()

        self.view.addSubview(theCustomWishlistView)
        // constrain CustomWishlistView
        theCustomWishlistView.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor, constant: 120.0).isActive = true
        theCustomWishlistView.bottomAnchor.constraint(equalTo: view.bottomAnchor, constant: 0).isActive = true
        theCustomWishlistView.leadingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leadingAnchor, constant: 30.0).isActive = true
        theCustomWishlistView.trailingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.trailingAnchor, constant: -30.0).isActive = true
        theCustomWishlistView.wishlistImage.image = self.image
        theCustomWishlistView.wishlistLabel.text = txt
        theCustomWishlistView.transform = CGAffineTransform(translationX: 0, y: 1000)

        self.view.bringSubviewToFront(containerView)

        // reload the collection view
        theCollectionView.reloadData()
        theCollectionView.performBatchUpdates(nil, completion: {
            (result) in
            // scroll to make newly added row visible (if needed)
            let i = self.theCollectionView.numberOfItems(inSection: 0) - 1
            let idx = IndexPath(item: i, section: 0)
            self.theCollectionView.scrollToItem(at: idx, at: .bottom, animated: true)

            // close (hide) the "New List" view
            self.closeButtonTappedNewList(nil)

        })

現在的問題是,如果用戶添加一個元素, dropDownOptions不會相應地更新數據。 那么如何訪問更新后的列表呢? 感謝您到目前為止的所有評論!

這是相當簡單的面向對象編程。 正如有人指出的那樣,您正在處理實例變量和類的實例,而不是類。

一個比喻:

實例:如果您希望一個類的一個實例從另一個類的實例中獲取一個值,這就像讓您的豐田汽車從您朋友的本田請求電台預設並以同樣的方式設置您的收音機。

課程:豐田汽車公司決定他們喜歡本田使用的無線電預設,因此他們閱讀本田公司的無線電台預設,而豐田工廠將這些設置用於所有新豐田汽車。

在 A 類中,將wishListTitlesArray public:

public var wishListTitlesArray: [String] = [String]()

然后,您的 B 類對象將需要一個指向 A 類對象的指針。 有多種方法可以做到這一點。 假設您設置 B 類以在初始化時獲取 A 類對象:

Class B {
   var myAObject: A
   var dropDownOptions: [String]

   init(aObject: A) {
      myAObject = anObject
      dropDownOptions = myAObject.wishListTitlesArray 
   }
//more code here
}

暫無
暫無

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

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