|
@@ -42,7 +42,12 @@
|
|
|
self.imageBrand.image = [UIImage imageNamed:image_brandLogin];
|
|
|
self.login.backgroundColor = COLOR_BRAND;
|
|
|
|
|
|
+ // Bottom label
|
|
|
self.bottomLabel.text = NSLocalizedString(@"_login_bottom_label_", nil);
|
|
|
+ self.bottomLabel.userInteractionEnabled = YES;
|
|
|
+ UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tabBottomLabel)];
|
|
|
+ [self.bottomLabel addGestureRecognizer:tapGesture];
|
|
|
+
|
|
|
if (self.view.frame.size.width == ([[UIScreen mainScreen] bounds].size.width*([[UIScreen mainScreen] bounds].size.width<[[UIScreen mainScreen] bounds].size.height))+([[UIScreen mainScreen] bounds].size.height*([[UIScreen mainScreen] bounds].size.width>[[UIScreen mainScreen] bounds].size.height))) {
|
|
|
|
|
|
// Portrait
|
|
@@ -354,9 +359,14 @@
|
|
|
}
|
|
|
|
|
|
#pragma --------------------------------------------------------------------------------------------
|
|
|
-#pragma mark == IBAction ==
|
|
|
+#pragma mark == Action ==
|
|
|
#pragma --------------------------------------------------------------------------------------------
|
|
|
|
|
|
+- (void)tabBottomLabel
|
|
|
+{
|
|
|
+ [[UIApplication sharedApplication] openURL:[NSURL URLWithString:k_loginButtonLabelLink]];
|
|
|
+}
|
|
|
+
|
|
|
- (IBAction)handlebaseUrlchange:(id)sender
|
|
|
{
|
|
|
if ([self.baseUrl.text length] > 0)
|