File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ public extension AnyHashable {
123
123
public static let ITBL_BUTTON_REQUIRES_UNLOCK = " requiresUnlock "
124
124
public static let ITBL_BUTTON_INPUT_TITLE = " inputTitle "
125
125
public static let ITBL_BUTTON_INPUT_PLACEHOLDER = " inputPlaceholder "
126
+ public static let ITBL_BUTTON_ACTION = " action "
126
127
}
127
128
128
129
@objcMembers public class ITBConsts : NSObject {
Original file line number Diff line number Diff line change @@ -228,13 +228,13 @@ struct IterableAppIntegrationInternal {
228
228
return nil
229
229
}
230
230
let foundButton = buttons. first { ( button) -> Bool in
231
- guard let buttonIdentifier = button [ ITBL_BUTTON_IDENTIFIER] as? String else {
231
+ guard let buttonIdentifier = button [ . ITBL_BUTTON_IDENTIFIER] as? String else {
232
232
return false
233
233
}
234
234
return buttonIdentifier == actionIdentifier
235
235
}
236
236
237
- return foundButton ? [ ITBL_BUTTON_ACTION] as? [ AnyHashable : Any ]
237
+ return foundButton ? [ . ITBL_BUTTON_ACTION] as? [ AnyHashable : Any ]
238
238
}
239
239
240
240
@available ( iOS 10 . 0 , * )
You can’t perform that action at this time.
0 commit comments