ios - 如何从 json 调用评级 View 并在我的 TableView 中显示评级

标签 ios iphone json swift uitableview

我有一个自定义单元格,其中有“名称”、“地址”、“评级 View ”。评级 View 是一类独立的评级 View 库文件,它将有 3 个图像(全星、半星、空星)。现在,从我的 json 数据中,我有了每个单元格的一些评级值。就像下面的 json 结构:

这是我的自定义单元格:

class customCell: UITableViewCell {


    @IBOutlet weak var vendorName: UILabel!   // vendor label name

    @IBOutlet weak var vendorAddress: UILabel!   // vendor address aname

    override func awakeFromNib() {
        super.awakeFromNib()
        // Initialization code
    }

我的表格 View Controller :

我还有 2 个自定义单元格。但是,如果我尝试添加一个单元格,我将编写并理解代码,并且我将为所有自定义单元格添加代码。

 func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

            // if cell tap condition

        if(isTapped == true && indexPath == selectedIndex)
        {



            if (premiumUserCheck && indexPath == selectedIndex ) {

                let cell1:premiumUsercell = self.tableView.dequeueReusableCellWithIdentifier("cell3") as! premiumUsercell

                cell1.phoneNumber = (arrDict[indexPath.section] .valueForKey("phone") as? String)!
                cell1.vendorName3.text=arrDict[indexPath.section] .valueForKey("name") as? String
                cell1.vendorAdddress3.text=arrDict[indexPath.section] .valueForKey("address") as? String

                print("premium user")

                return cell1


            }
            else {

                let cell1:ExpandCell = self.tableView.dequeueReusableCellWithIdentifier("cell2") as! ExpandCell


                cell1.VendorName.text=arrDict[indexPath.section] .valueForKey("name") as? String
                cell1.vendorAdress.text=arrDict[indexPath.section] .valueForKey("address") as? String
                //cell1.externalView.hidden = true

                print("non premium user") 
                return cell1 
            } 
        } 



        // show default cutsom cell

        let cell:customCell = self.tableView.dequeueReusableCellWithIdentifier("cell") as! customCell 


        cell.vendorName.text=arrDict[indexPath.section] .valueForKey("name") as? String 
        cell.vendorAddress.text=arrDict[indexPath.section] .valueForKey("address") as? String 

        print("norml user") 



        return cell 
    }

下面的代码是评级 View ,是一些库文件,我将其用于评级 View 。我将自定义 View 放置在自定义单元格内的一个 View 下。我必须在自定义单元格中选择我的 View 。我必须将该特定类分配为 RatingView 类。然后,如果我在自定义单元格中单击我的评级 View ,我可以看到如下图所示设置“评级星级、星级数量、关闭”空半图像:

enter image description here

我的RatingViewClasses:

import UIKit

@objc public protocol RatingViewDelegate {
    /**
     Called when user's touch ends

     - parameter ratingView: Rating view, which calls this method
     - parameter didChangeRating newRating: New rating
    */
    func ratingView(ratingView: RatingView, didChangeRating newRating: Float)
}

/**
 Rating bar, fully customisable from Interface builder
*/
@IBDesignable
public class RatingView: UIView {

    /// Total number of stars
    @IBInspectable public var starCount: Int = 5

    /// Image of unlit star, if nil "starryStars_off" is used
    @IBInspectable public var offImage: UIImage?

    /// Image of fully lit star, if nil "starryStars_on" is used
    @IBInspectable public var onImage: UIImage?

    /// Image of half-lit star, if nil "starryStars_half" is used
    @IBInspectable public var halfImage: UIImage?

    /// Current rating, updates star images after setting
    @IBInspectable public var rating: Float = Float(0) {
        didSet {
            // If rating is more than starCount simply set it to starCount
            rating = min(Float(starCount), rating)

            updateRating()
        }
    }

    /// If set to "false" only full stars will be lit
    @IBInspectable public var halfStarsAllowed: Bool = true

    /// If set to "false" user will not be able to edit the rating
    @IBInspectable public var editable: Bool = true


    /// Delegate, must confrom to *RatingViewDelegate* protocol
    public weak var delegate: RatingViewDelegate?

    var stars = [UIImageView]()


    override init(frame: CGRect) {
        super.init(frame: frame)

        customInit()
    }

    required public init?(coder aDecoder: NSCoder) {
        super.init(coder: aDecoder)
    }

    override public func awakeFromNib() {
        super.awakeFromNib()

        customInit()
    }

    override public func prepareForInterfaceBuilder() {
        super.prepareForInterfaceBuilder()

        customInit()
    }


    func customInit() {
        let bundle = NSBundle(forClass: RatingView.self)

        if offImage == nil {
            offImage = UIImage(named: "star_empty", inBundle: bundle, compatibleWithTraitCollection: self.traitCollection)
        }
        if onImage == nil {
            onImage = UIImage(named: "star_full", inBundle: bundle, compatibleWithTraitCollection: self.traitCollection)
        }
        if halfImage == nil {
            halfImage = UIImage(named: "star_half_full", inBundle: bundle, compatibleWithTraitCollection: self.traitCollection)
        }

        guard let offImage = offImage else {
            assert(false, "offImage is not set")
            return
        }

        for var i = 1; i <= starCount; i++ {
            let iv = UIImageView(image: offImage)
            addSubview(iv)
            stars.append(iv)

        }

        layoutStars()
        updateRating()
    }

    override public func layoutSubviews() {
        super.layoutSubviews()

        layoutStars()
    }

    func layoutStars() {
        if stars.count != 0,
            let offImage = stars.first?.image {
                let halfWidth = offImage.size.width/2
                let distance = (bounds.size.width - (offImage.size.width * CGFloat(starCount))) / CGFloat(starCount + 1) + halfWidth

                var i = 1
                for iv in stars {
                    iv.frame = CGRectMake(0, 0, offImage.size.width, offImage.size.height)

                    iv.center = CGPointMake(CGFloat(i) * distance + halfWidth * CGFloat(i - 1),
                        self.frame.size.height/2)
                    i++
                }
        }
    }

    /**
     Compute and adjust rating when user touches begin/move/end
    */
    func handleTouches(touches: Set<UITouch>) {
        let touch = touches.first!
        let touchLocation = touch.locationInView(self)

        for var i = starCount - 1; i >= 0; i-- {
            let imageView = stars[i]

            let x = touchLocation.x;

            if x >= imageView.center.x {
                rating = Float(i) + 1
                return
            } else if x >= CGRectGetMinX(imageView.frame) && halfStarsAllowed {
                rating = Float(i) + 0.5
                return
            }
        }

        rating = 0
    }

    /**
     Adjust images on image views to represent new rating
     */
    func updateRating() {
        // To avoid crash when using IB
        if stars.count == 0 {
            return
        }

        // Set every full star
        var i = 1
        for ; i <= Int(rating); i++ {
            let star = stars[i-1]
            star.image = onImage
        }

        if i > starCount {
            return
        }

        // Now add a half star
        if rating - Float(i) + 1 >= 0.5 {
            let star = stars[i-1]
            star.image = halfImage
            i++
        }


        for ; i <= starCount; i++ {
            let star = stars[i-1]
            star.image = offImage
        }
    }
}

// MARK: Override UIResponder methods

extension RatingView {
    override public func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {
        guard editable else { return }
        handleTouches(touches)
    }

    override public func touchesMoved(touches: Set<UITouch>, withEvent event: UIEvent?) {
        guard editable else { return }
        handleTouches(touches)
    }

    override public func touchesEnded(touches: Set<UITouch>, withEvent event: UIEvent?) {
        guard editable else { return }
        handleTouches(touches)
        guard let delegate = delegate else { return }
        delegate.ratingView(self, didChangeRating: rating)
    }
}

现在我需要从 json 中获取评级编号,并且必须在自定义单元格中分配给我的 uiview,并且我需要在所有 TableView 单元格中显示相应的评级。

请帮帮我。我正在努力动态获取 json 数据?

谢谢!

更新:

customcell.swift

  @IBOutlet weak var ratingView: RatingView!


    @IBOutlet weak var vendorName: UILabel!   // vendor label name

    @IBOutlet weak var vendorAddress: UILabel!   // vendor address aname

    override func awakeFromNib() {
        super.awakeFromNib()

        super.awakeFromNib()
        //ratingView = RatingView(frame:CGRectMake(0, 0, cellWidth, cellHeight))
        // Initialization code
    }

Viewcontroller.swift

let cell:customCell = self.tableView.dequeueReusableCellWithIdentifier("cell") as! customCell 

            let ratingString = "\(arrDict[indexPath.section].valueForKey("rating"))"
            cell.ratingView?.rating = Float(ratingString)!

        cell.vendorName.text=arrDict[indexPath.section] .valueForKey("name") as? String 
        cell.vendorAddress.text=arrDict[indexPath.section] .valueForKey("address") as? String 

最佳答案

RatingView 添加为 TableViewCellawakeNib 方法中的 subview ,并将其设置为全局变量,例如 RatingView 。那么

var ratingView:RatingView? = nil

override func awakeFromNib() {
    super.awakeFromNib()
    ratingView = RatingView(frame:CGRectMake(0, 0, cellWidth, cellHeight)) // your requiredFrame
}

cellForRowAtIndexPath

let ratingString = "\(arrDict[indexPath.section].valueForKey("rating"))"
if let ratingValue = Float(ratingString) {
   cell1.ratingView?.rating = ratingValue
}
else {
   cell1.ratingView?.rating = 0
}

关于ios - 如何从 json 调用评级 View 并在我的 TableView 中显示评级,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36186971/

相关文章:

ios - 在 iOS 应用程序中包含文件的最佳实践

ios - 崩溃:libsystem_pthread.dylib:_pthread_wqthread

ios - 如何使SVG在iOS上运行?

ios - 我如何让 WhatsApp abid 向 iOS 中的特定用户发送消息?

ruby-on-rails - 如何使用符号通过 HTTParty 访问 JSON 响应?

iOS Google Analytics 内存增长失控 FAST

iphone - 来自图书馆的照片不会移动和缩放

iphone - 如何捕获 UITableView/UIScrollView 完整内容的 UIImage 并使其在 ios 设备上工作

javascript - 如何正确实现 async/await

javascript - 循环遍历 JSON 键以添加 Google map 数据