RKCardView 0.1.0

RKCardView 0.1.0

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Dec 2014

Maintained by Richard Kim.




Beautiful Twitter / Facebook style cards (built with @JaredTMoskowitz)

This is a template for making beautiful cards

Anatomy

Methods

Responsive Design!

Change the size and the card responds in turn

responsive responsive2

Examples

An example of RKCardView used in a real project

Example

Usage

    RKCardView* cardView= [[RKCardView alloc]initWithFrame:CGRectMake(x origin, y origin, card width, card height)];

    cardView.coverImageView.image = [UIImage imageNamed:@"your cover photo"];
    cardView.profileImageView.image = [UIImage imageNamed:@"your profile picture"];
    cardView.titleLabel.text = @"Richard Kim";
    [cardView addBlur]; // comment this out if you don't want blur
    [cardView addShadow]; // comment this out if you don't want a shadow
    [self.view addSubview:cardView];