mirror of
https://bitbucket.org/vendoo/vendoo_v1.0.git
synced 2025-12-25 03:37:39 +00:00
73 lines
3.0 KiB
Swift
73 lines
3.0 KiB
Swift
// The MIT License (MIT)
|
|
//
|
|
// Copyright (c) 2015 Joakim Gyllström
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
// copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
// SOFTWARE.
|
|
|
|
import UIKit
|
|
|
|
/**
|
|
The navigation title view with album name and a button for activating the drop down.
|
|
*/
|
|
final class AlbumTitleView: UIView {
|
|
@IBOutlet weak var albumButton: UIButton!
|
|
|
|
private var context = 0
|
|
|
|
var albumTitle = "" {
|
|
didSet {
|
|
if let imageView = self.albumButton?.imageView, let titleLabel = self.albumButton?.titleLabel {
|
|
// Set title on button
|
|
albumButton?.setTitle(self.albumTitle, forState: .Normal)
|
|
|
|
// Also set title directly to label, since it isn't done right away when setting button title
|
|
// And we need to know its width to calculate insets
|
|
titleLabel.text = self.albumTitle
|
|
titleLabel.sizeToFit()
|
|
|
|
// Adjust insets to right align image
|
|
albumButton?.titleEdgeInsets = UIEdgeInsets(top: 0, left: -imageView.bounds.size.width, bottom: 0, right: imageView.bounds.size.width)
|
|
albumButton?.imageEdgeInsets = UIEdgeInsets(top: 0, left: titleLabel.bounds.size.width + 4, bottom: 0, right: -(titleLabel.bounds.size.width + 4))
|
|
}
|
|
}
|
|
}
|
|
|
|
override func awakeFromNib() {
|
|
super.awakeFromNib()
|
|
|
|
// Set image
|
|
albumButton?.setImage(arrowDownImage, forState: .Normal)
|
|
}
|
|
|
|
lazy var arrowDownImage: UIImage? = {
|
|
// Get path for BSImagePicker bundle
|
|
let bundlePath = NSBundle(forClass: PhotosViewController.self).pathForResource("BSImagePicker", ofType: "bundle")
|
|
let bundle: NSBundle?
|
|
|
|
// Load bundle
|
|
if let bundlePath = bundlePath {
|
|
bundle = NSBundle(path: bundlePath)
|
|
} else {
|
|
bundle = nil
|
|
}
|
|
|
|
return UIImage(named: "arrow_down", inBundle: bundle, compatibleWithTraitCollection: nil)
|
|
}()
|
|
}
|