Showing
8 changed files
with
5 additions
and
4 deletions
No preview for this file type
No preview for this file type
470 Bytes
... | @@ -901,7 +901,7 @@ | ... | @@ -901,7 +901,7 @@ |
901 | CODE_SIGN_STYLE = Automatic; | 901 | CODE_SIGN_STYLE = Automatic; |
902 | CURRENT_PROJECT_VERSION = 1; | 902 | CURRENT_PROJECT_VERSION = 1; |
903 | DEFINES_MODULE = YES; | 903 | DEFINES_MODULE = YES; |
904 | - DEVELOPMENT_ASSET_PATHS = WarplySDKFrameworkIOS/Media; | 904 | + DEVELOPMENT_ASSET_PATHS = Media.xcassets; |
905 | DEVELOPMENT_TEAM = VW5AF53FLP; | 905 | DEVELOPMENT_TEAM = VW5AF53FLP; |
906 | DYLIB_COMPATIBILITY_VERSION = 1; | 906 | DYLIB_COMPATIBILITY_VERSION = 1; |
907 | DYLIB_CURRENT_VERSION = 1; | 907 | DYLIB_CURRENT_VERSION = 1; |
... | @@ -937,7 +937,7 @@ | ... | @@ -937,7 +937,7 @@ |
937 | CODE_SIGN_STYLE = Automatic; | 937 | CODE_SIGN_STYLE = Automatic; |
938 | CURRENT_PROJECT_VERSION = 1; | 938 | CURRENT_PROJECT_VERSION = 1; |
939 | DEFINES_MODULE = YES; | 939 | DEFINES_MODULE = YES; |
940 | - DEVELOPMENT_ASSET_PATHS = WarplySDKFrameworkIOS/Media; | 940 | + DEVELOPMENT_ASSET_PATHS = Media.xcassets; |
941 | DEVELOPMENT_TEAM = VW5AF53FLP; | 941 | DEVELOPMENT_TEAM = VW5AF53FLP; |
942 | DYLIB_COMPATIBILITY_VERSION = 1; | 942 | DYLIB_COMPATIBILITY_VERSION = 1; |
943 | DYLIB_CURRENT_VERSION = 1; | 943 | DYLIB_CURRENT_VERSION = 1; | ... | ... |
No preview for this file type
... | @@ -12,6 +12,7 @@ | ... | @@ -12,6 +12,7 @@ |
12 | <placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="Coupons" customModule="WarplySDKFrameworkIOS" customModuleProvider="target"> | 12 | <placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="Coupons" customModule="WarplySDKFrameworkIOS" customModuleProvider="target"> |
13 | <connections> | 13 | <connections> |
14 | <outlet property="myScrollView" destination="SHV-Vg-A8P" id="dzS-Na-cRH"/> | 14 | <outlet property="myScrollView" destination="SHV-Vg-A8P" id="dzS-Na-cRH"/> |
15 | + <outlet property="view" destination="iN0-l3-epB" id="wLC-JN-Nyj"/> | ||
15 | </connections> | 16 | </connections> |
16 | </placeholder> | 17 | </placeholder> |
17 | <placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/> | 18 | <placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/> | ... | ... |
... | @@ -98,7 +98,7 @@ struct Previews_CouponsView_Previews: PreviewProvider { | ... | @@ -98,7 +98,7 @@ struct Previews_CouponsView_Previews: PreviewProvider { |
98 | static var uiscreen = UIScreen.main.bounds | 98 | static var uiscreen = UIScreen.main.bounds |
99 | static var previews: some View { | 99 | static var previews: some View { |
100 | ZStack { | 100 | ZStack { |
101 | - Image("ic_back", bundle: Bundle(identifier: "framework.warp.ly.WarplySDKFrameworkIOS")) | 101 | + Image("ic_back", bundle: Bundle(for: MyEmptyClass.self)) |
102 | .resizable() | 102 | .resizable() |
103 | .frame(width: self.uiscreen.height * 0.025, height: self.uiscreen.height * 0.02) | 103 | .frame(width: self.uiscreen.height * 0.025, height: self.uiscreen.height * 0.02) |
104 | .offset(x: -self.uiscreen.width / 2 + self.uiscreen.width * 0.05, y: self.uiscreen.height * 0.07) | 104 | .offset(x: -self.uiscreen.width / 2 + self.uiscreen.width * 0.05, y: self.uiscreen.height * 0.07) | ... | ... |
... | @@ -12,7 +12,7 @@ import SwiftUI | ... | @@ -12,7 +12,7 @@ import SwiftUI |
12 | @objc public class CouponsViewInterface : NSObject { | 12 | @objc public class CouponsViewInterface : NSObject { |
13 | 13 | ||
14 | @objc static public func couponsViewController() -> UIViewController { | 14 | @objc static public func couponsViewController() -> UIViewController { |
15 | - return UIHostingController(rootView: CouponsView()) | 15 | + return Coupons() |
16 | } | 16 | } |
17 | 17 | ||
18 | } | 18 | } | ... | ... |
-
Please register or login to post a comment