Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 920 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 920 Bytes

jbw-builders

Builder categories for NSURL and NSDate. The builder category adds a builder pattern based convenience initializer to easily build these classes. Instead of creating a custom builder object, the build in foundation NS*Components objects are used.

By Joris Kluivers

Example

NSDate *testDate = [NSDate gregorianDateWithBuilderBlock:^(NSDateComponents *builder) {
    builder.year = 2014;
    builder.month = 4;
    builder.day = 8;
    builder.hour = 12;
}];

NSURL *testURL = [NSURL URLWithBuilderBlock:^(NSURLComponents *builder) {
    builder.host = @"joris.kluivers.nl";
    builder.scheme = @"http";
}];