Skip to content

Commit

Permalink
Bug fixes, Documentation fixes. (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-yushchenko authored Feb 16, 2018
1 parent 6a2be12 commit 8656650
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DigiMeSDK/Core/DMEClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
/**
DigiMe client delegate. This should only be set if you do not with to use DMEClientCallbacks.
*/
@property (nonatomic, strong) id<DMEClientDelegate> delegate;
@property (nonatomic, weak) id<DMEClientDelegate> delegate;


/**
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'

target 'TargetName' do
pod 'DigiMeSDK', '~> 2.0.0'
pod 'DigiMeSDK'
end
```

Expand Down Expand Up @@ -143,7 +143,7 @@ Before you start interacting with it in your app, however - you will need to con
Set the private key hex - [See above for details](#contract-private-key):

```objective-c
[DMEClient shared].privateKeyHex = privateKeyHex;
[DMEClient sharedClient].privateKeyHex = privateKeyHex;
```


Expand Down Expand Up @@ -625,7 +625,7 @@ to
In the new delegate method `authorizeSucceeded:` you can request the fileList:

```objective-c
[[DMEClient SharedClient] getFileList];
[[DMEClient sharedClient] getFileList];
```

Int the new delegate method `clientRetrievedFileList:` you can iterate through `files.fileIds` and request content for each file, for example:
Expand Down

0 comments on commit 8656650

Please sign in to comment.