Hello my fellow compatriots,I've been learning to use XIB's as of late. As of right now, my XIB is not being programmatically added and all frames and bounds are 0,0.Any assistance would be awesome.XIB h file@interface builder : UIView @property (strong) IBOutlet UIImageView *theImage; / @property (nonatomic) NSInteger locX; @property (nonatomic) NSInteger locY; @property (strong) IBOutlet UIView *view; @endXIB m file#import builder.h @end @implementation builder @synthesize locX; @synthesize locY; - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { UITouch *touch = [touches anyObject]; UITouch *touched = [[event allTouches] anyObject]; CGPoint location = [touch locationInView: touched.view]; locX = location.x; locY = location.y; NSLog(@%ld and %ld, (long)locX, (long)locY); / } - (id) initWithFrame:(CGRect)frame{ self = [super initWithFrame:frame]; if (self) { / [[NSBundle mainBundle] loadNibNamed:@builder owner:self options:nil]; self.bounds = self.view.bounds; / NSLog(@%@, N