Skip to content

Commit

Permalink
fix delegate declaration in example with delegates
Browse files Browse the repository at this point in the history
  • Loading branch information
priore committed Mar 29, 2024
1 parent fd2a686 commit fc39c5a
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,14 +119,12 @@ class ViewController: UIViewController, SOAPEngineDelegate {
// standard soap service (.asmx)
soap.requestURL("http://www.prioregroup.com/services/americanbible.asmx",
soapAction: "http://www.prioregroup.com/GetVerses")
}

func soapEngine(_ soapEngine: SOAPEngine!,
didFinishLoadingWith dict: [AnyHashable : Any]!,
data: Data!)
{
let dict = soapEngine.dictionaryValue()
print(dict)
}
func soapEngine(_ soapEngine: SOAPEngine!, didFinishLoadingWith dict: [AnyHashable : Any]!, data: Data!)
{
let dict = soapEngine.dictionaryValue()
print(dict)
}
}
```
Expand Down

0 comments on commit fc39c5a

Please sign in to comment.