Skip to content

Commit

Permalink
fixed delegate
Browse files Browse the repository at this point in the history
  • Loading branch information
d-dotsenko committed Dec 27, 2019
1 parent e6e404d commit 18135aa
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions DDPinCodeDecorator.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,7 @@
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = PinCodeDecorator/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand All @@ -333,6 +334,7 @@
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = PinCodeDecorator/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<key>DDPinCodeDecorator.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>0</integer>
<integer>1</integer>
</dict>
<key>PinCodeDecorator.xcscheme_^#shared#^_</key>
<dict>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = PinCodeDecoratorExample/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand All @@ -366,6 +367,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = PinCodeDecoratorExample/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down
2 changes: 1 addition & 1 deletion PinCodeDecorator/DDPinCodeDecorator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public class DDPinCodeDecorator: DDPinCodeDecoratorProtocol, DDPinCodeDecoratorV
return self._view
}
}
open var delegate: DDPinCodeDecoratorOutput?
open weak var delegate: DDPinCodeDecoratorOutput?
open var resultString: String = "" {
didSet {
print(self.resultString)
Expand Down

0 comments on commit 18135aa

Please sign in to comment.