From 468e89693aa30b75d663c3d61ea5131d1ece8d34 Mon Sep 17 00:00:00 2001 From: Wesley Moore Date: Fri, 9 Dec 2011 07:41:06 +1100 Subject: [PATCH] Fix spelling --- .../12/fun-with-objc-setassociatedobject-and-uialertview.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/technical/2011/12/fun-with-objc-setassociatedobject-and-uialertview.html b/content/technical/2011/12/fun-with-objc-setassociatedobject-and-uialertview.html index 4f50def..03be06f 100644 --- a/content/technical/2011/12/fun-with-objc-setassociatedobject-and-uialertview.html +++ b/content/technical/2011/12/fun-with-objc-setassociatedobject-and-uialertview.html @@ -1,6 +1,6 @@ When it comes time to present errors or other messages in iOS with [UIAlertView] it becomes immediately obvious that a more -convienient interface would involve the use of blocks. A [search on +convenient interface would involve the use of blocks. A [search on GitHub][github-search] shows just about every iOS developer has had a crack at it. @@ -35,7 +35,7 @@ suggested in a [tweet by Bill Bummager][bbum]. TODO [bbum]: http://twitter.com/bbum/status/3609098005 -Then in `alertView:didDismissWithButtonIndex:`, the assocation is +Then in `alertView:didDismissWithButtonIndex:`, the association is removed, `dealloc` of the wrapper called and the `UIAlertView` also released.