MDCCard can be used like a regular UIView.
let card = MDCCard() // Create, position, and add content views: let imageView = UIImageView() card.addSubview(imageView)
MDCCard *card = [[MDCCard alloc] init]; // Create, position, and add content views: UIImageView *imageView = [[UIImageView alloc] init]; [card addSubview:imageView];