TestsTested | ✗ |
LangLanguage | SwiftSwift |
License | MIT |
ReleasedLast Release | Feb 2017 |
SwiftSwift Version | 3.0 |
SPMSupports SPM | ✗ |
Maintained by Matthew Rigdon.
This framework allows you to easily setup View Controllers to display News Articles inspired by those from the Apple News App. Simply set the required fields and run, and you will have a nice looking view for your articles.
To run the example project, clone the repo, and run pod install
from the Example directory first.
MRArticleViewController is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'MRArticleViewController'
Import the module
import MRArticleViewController
Subclass ArticleViewController
class ViewController: ArticleViewController
In viewDidLoad
, set the following required properties before super.viewDidLoad()
:
override func viewDidLoad() {
// required
imageView.image = UIImage(named: "pulpfiction")!
headline = "LA gangsters witness supposed \"Divine Intervention\""
author = "Quentin Tarantino"
date = NSDate()
body = bodyText
super.viewDidLoad()
}
Optional: In viewDidLoad
, set the following optional properties before super.viewDidLoad()
:
...
// Uses the algorithm from UIImageColors to extract the colors from the image and color the
// background, headline, author, date, and body accordingly. Defaults to false, but highly
// recommended to set to true. More on this feature below.
autoColored = true
// If you don't like the autoColor feature, you can also color each component individually
backgroundColor = UIColor.black
headlineColor = UIColor.yellow
authorColor = UIColor.orange
dateColor = UIColor.gray
bodyColor = UIColor.gray
super.viewDidLoad()
Done!
autoColored
This library leverages the algorithm from UIImageColors. Setting autoColor = true
extracts the colors from the image
and applies the
Note that UIImageColors is not a dependency, the code has just been ported into this library.
Want a feature you don’t see? Submit an issue and I’ll add it to the to-do list, or hack it yourself and submit a pull request.
Matthew Rigdon, [email protected]
MRArticleViewController is available under the MIT license. See the LICENSE file for more info. Please also refer to Panic’s original license for the autoColor feature.