Skip to content

Commit 1f65aa0

Browse files
committed
Fixed #1333 where done button invocation wasn't getting called due to some reference exchanging
1 parent 00641fd commit 1f65aa0

8 files changed

Lines changed: 20 additions & 11 deletions

File tree

Demo.xcodeproj/xcshareddata/xcschemes/DemoObjC.xcscheme

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
buildConfiguration = "Debug"
2727
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
2828
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29-
language = ""
3029
shouldUseLaunchSchemeArgsEnv = "YES">
3130
<Testables>
3231
</Testables>
@@ -46,7 +45,6 @@
4645
buildConfiguration = "Debug"
4746
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
4847
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
49-
language = ""
5048
launchStyle = "0"
5149
useCustomWorkingDirectory = "NO"
5250
ignoresPersistentStateOnLaunch = "NO"

Demo.xcodeproj/xcshareddata/xcschemes/DemoSwift.xcscheme

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
buildConfiguration = "Debug"
2727
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
2828
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29-
language = ""
3029
shouldUseLaunchSchemeArgsEnv = "YES">
3130
<Testables>
3231
</Testables>
@@ -46,7 +45,6 @@
4645
buildConfiguration = "Debug"
4746
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
4847
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
49-
language = ""
5048
launchStyle = "0"
5149
useCustomWorkingDirectory = "NO"
5250
ignoresPersistentStateOnLaunch = "NO"
@@ -64,6 +62,16 @@
6462
</BuildableReference>
6563
</BuildableProductRunnable>
6664
<AdditionalOptions>
65+
<AdditionalOption
66+
key = "MallocStackLogging"
67+
value = ""
68+
isEnabled = "YES">
69+
</AdditionalOption>
70+
<AdditionalOption
71+
key = "PrefersMallocStackLoggingLite"
72+
value = ""
73+
isEnabled = "YES">
74+
</AdditionalOption>
6775
</AdditionalOptions>
6876
</LaunchAction>
6977
<ProfileAction

Demo/Objective_C_Demo/Resources/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>6.0.1</string>
24+
<string>6.0.3</string>
2525
<key>LSRequiresIPhoneOS</key>
2626
<true/>
2727
<key>UILaunchStoryboardName</key>

Demo/Swift_Demo/Resources/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>6.0.1</string>
24+
<string>6.0.3</string>
2525
<key>LSRequiresIPhoneOS</key>
2626
<true/>
2727
<key>UILaunchStoryboardName</key>

IQKeyboardManager.podspec.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "IQKeyboardManager",
3-
"version": "6.0.2",
3+
"version": "6.0.3",
44
"source": {
55
"git": "https://github.com/hackiftekhar/IQKeyboardManager.git",
6-
"tag": "v6.0.2"
6+
"tag": "v6.0.3"
77
},
88
"summary": "Codeless drop-in universal library allows to prevent issues of keyboard sliding up and cover UITextField/UITextView.",
99
"homepage": "https://github.com/hackiftekhar/IQKeyboardManager",

IQKeyboardManagerSwift.podspec.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "IQKeyboardManagerSwift",
3-
"version": "6.0.2",
3+
"version": "6.0.3",
44
"source": {
55
"git": "https://github.com/hackiftekhar/IQKeyboardManager.git",
6-
"tag": "v6.0.2"
6+
"tag": "v6.0.3"
77
},
88
"summary": "Codeless drop-in universal library allows to prevent issues of keyboard sliding up and cover UITextField/UITextView.",
99
"homepage": "https://github.com/hackiftekhar/IQKeyboardManager",

IQKeyboardManagerSwift/IQToolbar/IQBarButtonItem.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@ open class IQBarButtonItem: UIBarButtonItem {
119119

120120
deinit {
121121
target = nil
122-
invocation?.target = nil
123122
invocation = nil
124123
}
125124
}

IQKeyboardManagerSwift/IQToolbar/IQInvocation.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,8 @@ public class IQInvocation : NSObject {
3838
UIApplication.shared.sendAction(action, to: target, from: from, for: UIEvent())
3939
}
4040
}
41+
42+
deinit {
43+
target = nil
44+
}
4145
}

0 commit comments

Comments
 (0)