I'm trying to add a UIView into a scrollview that I have. No bugs or errors, although nothing is showing up when running the code.
Which is: scrollView.contentSize = CGSizeMake(375, 667)
let newStory:InboxStory = InboxStory()
newStory.titleLabel?.text = "test it"
newStory.frame = CGRectMake(0, 0, 375, 667)
scrollView.addSubview(newStory as UIView)
Everything is created properly and my view has a label which is placed with autoLayout.
Here's my autoLayout for the label:

Right now, the UIScrollView remains empty (or at least looks blank). Is there something that I'm missing or not thinking about? Could my autoLayout be causing the problem?
Thanks