Simple PayPal implementation using Swift.
- Self-sizing table view cell
- Custom selection style and multi selection
- Async image loading and image caching
- Auto layout
- Blurry background
- Custom button (SimpleButton)
Simple network request using completion handler.
listCharities { (array, error) -> Void in
self.charityList = Charity.charityWithJSON(array)
dispatch_async(dispatch_get_main_queue(), {
self.tableView.reloadData()
})
}