mirror of
https://bitbucket.org/vendoo/vendoo_v1.0.git
synced 2025-12-25 03:37:39 +00:00
19 lines
386 B
Swift
19 lines
386 B
Swift
//
|
|
// NetworkCollectionViewCell.swift
|
|
// Vendoo
|
|
//
|
|
// Created by Okechi Onyeje on 11/19/16.
|
|
// Copyright © 2016 Okechi Onyeje. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class NetworkCollectionViewCell: UICollectionViewCell {
|
|
@IBOutlet weak var image: UIImageView!
|
|
|
|
func setImg(networkIcon: String!){
|
|
|
|
self.image.image = UIImage(named: networkIcon)
|
|
}
|
|
}
|