justinamberson

Results 2 issues of justinamberson

In a subclass of CLViewController, I've imitated the CLWebViewController -init methods and inserted ``` _viewSize = CLViewSizeWider; ``` into the if (self) code block. However, when pushing this view onto...

Dropped in to an ARC project and got 6 errors, so I added these types of statements # if __has_feature(objc_arc) ``` return alert; ``` # else ``` return [alert autorelease];...