Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. class EBookPromotionSplitTest: SplitTestProtocol {
  2. typealias ValueType = PromotionViewControllerStyle
  3. static var identifier: String = "ebookPromotionTest"
  4. var value: PromotionViewControllerStyle
  5.  
  6.  
  7. required init(group: String) {
  8. self.value =
  9. group == "social" ?
  10. PromotionViewControllerStyle.init(contentView: "\(TwitterView.self)")
  11. : PromotionViewControllerStyle.init(contentView: "\(NewsLetterView.self)")
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement