old mode 100755
new mode 100644
| | |
| | | using System; |
| | | using Foundation; |
| | | using Shared; |
| | | using Shared.Common; |
| | | using UIKit; |
| | | using Shared.Common; |
| | | |
| | | namespace GateWay.Ios |
| | | { |
| | |
| | | |
| | | Shared.Common.CommonPage.Instance.Show(); |
| | | |
| | | |
| | | |
| | | |
| | | UITapGestureRecognizer oTapRecognizer = new UITapGestureRecognizer(); |
| | | oTapRecognizer.CancelsTouchesInView = false; |
| | |
| | | |
| | | public override void ViewWillAppear(bool animated) |
| | | { |
| | | UIApplication.SharedApplication.StatusBarStyle = UIStatusBarStyle.Default; |
| | | UIApplication.SharedApplication.StatusBarStyle = UIStatusBarStyle.LightContent; |
| | | //base.ViewWillAppear(animated); |
| | | } |
| | | |