Сделайте это в вашем методе «Начало или конец».
-(void) touchesBegan: (NSSet *) touches withEvent: (UIEvent *) event
{
UITouch* touch = [[touches allObjects] objectAtIndex:0];
CGPoint location = [touch locationInView: [touch view]];
CGRect firstLinkRect = CGRectMake(36, 11, 150, 12); // your UILabel Rect
// NSLog(@"X: @%f \n Y: @%f",location.x, location.y);
if (CGRectContainsPoint(firstLinkRect, location))
{
//NSLog(@"Get First point");
NSURL *target = [[NSURL alloc] initWithString:@"http://www.google.com"];
[[UIApplication sharedApplication] openURL:target];
}
}