forked from kingj5/iOSKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.xojo_code
30 lines (24 loc) · 824 Bytes
/
App.xojo_code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#tag Class
Protected Class App
Inherits IOSApplication
#tag CompatibilityFlags = TargetIOS
#tag Event
Function Open(launchOptionsHandle as Ptr) As Boolean
'using Extensions
'UIVisualEffectView.DefaultEffect = UIVibrancyEffect.EffectForBlurEffect(UIBlurEffect.EffectWithStyle(UIBlurEffect.BlurEffectStyle.Dark))
End Function
#tag EndEvent
#tag Event
Function UnhandledException(exc As RuntimeException) As Boolean
MsgBox "Exception", exc.Reason
Return True
End Function
#tag EndEvent
#tag Constant, Name = TestBlue, Type = Color, Dynamic = False, Default = \"&c6DFFF6", Scope = Public
#tag EndConstant
#tag Constant, Name = TestWhite, Type = Color, Dynamic = False, Default = \"&cF6F6F6", Scope = Public
#tag EndConstant
#tag ViewBehavior
#tag EndViewBehavior
End Class
#tag EndClass