Skip to content

An iOS View to help cleanly display a group of friends in a flat style

Notifications You must be signed in to change notification settings

kkoser/kFriendCircleView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kFriendCircleView

An iOS View to help cleanly display a group of friends in a flat style. Now with ARC!

Gif Screenshot

How to Use:

  1. Create a KFRiendCircleView, either in IB or in code using initWithFrame:Pictures:Usernames:
  2. (Mainly for use in IB) add more users using addUser: withImage:
  3. Set the selected user
  4. DONE!

Ex:

in ViewController.h:

@property (strong, nonatomic) IBOutlet KFriendCircleView *circle;

in viewController.m:

//set to show the triangular selector below the selected user
self.circle.showSelector = YES;

//add users
[self.circle addUser:@"kkoser" withImage:[UIImage imageNamed:@"Test.png"]];
[self.circle addUser:@"kkoser" withImage:[UIImage imageNamed:@"Test.png"]];

[self.circle animate]; //this animates in all of the images from a blank view
self.circle.selected = 0; //set the selected

About

An iOS View to help cleanly display a group of friends in a flat style

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published