/UIView-PKFrameAdditions

Shorthand methods for setting frame attributes of a iOS UIView

Primary LanguageObjective-COtherNOASSERTION

Some shorthand helper methods for UIViews

Instead of:

self.myUIView.frame = CGRectMake(self.myUIView.frame.origin.x,
				60,
			 	self.myUIView.frame.size.width,
				self.myUIView.frame.size.height);

You can just do:

self.myUIView.frameY = 60;

Other helpers:

self.myUIView.frameSize = CGSizeMake(200, 300);
self.myUIView.frameOrigin = CGPointMake(10, 50);