Skip to content

Commit

Permalink
Merge pull request #145 from auth0/bugfix-subscript-support-swift
Browse files Browse the repository at this point in the history
Fix subscript support in Swift for A0AuthParameters
  • Loading branch information
hzalaz committed Jul 23, 2015
2 parents aab4e0e + 471d99d commit 66a6a3e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Lock/Lock/Lock-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
Expand Down
2 changes: 1 addition & 1 deletion Pod/Classes/Core/A0AuthParameters.h
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ FOUNDATION_EXTERN NSString * const A0ParameterTarget;
- (void)addValuesFromParameters:(A0AuthParameters *)parameters;

- (nullable id)objectForKeyedSubscript:(NSString *)key;
- (void)setObject:(id)obj forKeyedSubscript:(NSString *)key;
- (void)setObject:(nullable id)obj forKeyedSubscript:(NSString *)key;

@end

Expand Down

0 comments on commit 66a6a3e

Please sign in to comment.