Simply initial it with an NSArray, title, and specify if cancel button is needed.
NSArray *data = [[NSArray alloc] initWithObjects:@"1", @"2", nil];
CKTableAlertView *alert = [[CKTableAlertView alloc] initWithArray:data title:@"This is a title" hasCancelButton:YES];
[alert show];
You can implement CKTableAlertViewDelegate in order to catch the event of clicking cells. See more details from the Demo project.
This project is released under the MIT License.
http://joris.kluivers.nl/blog/2012/03/02/custom-popups-revisited/