DZone
Java Zone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
  • Refcardz
  • Trend Reports
  • Webinars
  • Zones
  • |
    • Agile
    • AI
    • Big Data
    • Cloud
    • Database
    • DevOps
    • Integration
    • IoT
    • Java
    • Microservices
    • Open Source
    • Performance
    • Security
    • Web Dev
DZone > Java Zone > Objective-C Builder Pattern

Objective-C Builder Pattern

Alex Curylo user avatar by
Alex Curylo
·
May. 14, 14 · Java Zone · Interview
Like (0)
Save
Tweet
2.63K Views

Join the DZone community and get the full member experience.

Join For Free

Well, here’s one of those too obvious to think of — too obvious for us until it was pointed out, anyways — clever programming tricks everyone should adopt: No doubt if you have any non-trivial data model, you’re using something recognizable as the Builder pattern to construct those objects. (And if you’re not, your code’s probably a complete mess, and you should be.) But there’s room for a good bit of error with variable scope, copy paste muck ups, and the like.

Enter this clever spark Klass Pieter, for whom obvious solution is obvious:

The Builder Pattern in Objective-C

… In order to make this pattern fit Objective-C we’re going to apply another pattern. This one comes from Ruby. I don’t know what the official name for it is, I just call it the Ruby configuration block pattern. This is our final idiomatic Objective-C implementation:

Pizza *pizza = [Pizza pizzaWithBlock:^(PizzaBuilder *builder]) {
   builder.size = 12;
   builder.pepperoni = YES;
   builder.mushrooms = YES;
}];

We made the interface fluent, the scope of the builder is limited to within the block and as an added benefit the call to build is now implicit. When the block returns the pizzaWithBlock: method knows that configuration is finished and can call build for us. Not only did we make the pattern idiomatic Objective-C, we also removed one of the Java implementation’s major headaches; forgetting to call the sentinel method…

As you may have noticed here and there, we’re big believers in making our code readable and foolproof. And this is a pretty nice advance on that front from our current builder pattern type of practices, yep.

And this Joris Kluivers fellow here was not only as struck with the elegance here as we are, he went ahead and started implementing it:

The Builder Pattern in Objective-C Foundation

In a recent blog post Klaas Pieter Annema wrote about using the builder pattern in Objective-C. Inspired by his post I created two categories that bring similar functionality to NSURL and NSDate.

An example:

NSURL *url = [NSURL URLWithBuilderBlock:^(NSURLComponents *builder) {
  builder.scheme = @"http”;
  builder.host = @"joris.kluivers.nl”;
  builder.path = @"/blog/2014/04/08/the-builder-pattern-in-objective-c/";
}];

My builder categories on NSDate and NSURL are available on github for review. Let me know what you think.

Nice examples there of how exactly to go about implementing this for your own objects.

h/t: ManiacDev!

Objective C Builder pattern

Published at DZone with permission of Alex Curylo, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • How to Submit a Post to DZone
  • The Most Popular Kubernetes Alternatives and Competitors
  • Don't Underestimate Documentation
  • DZone's Article Submission Guidelines

Comments

Java Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • MVB Program
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends:

DZone.com is powered by 

AnswerHub logo