Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 687 Bytes

File metadata and controls

26 lines (18 loc) · 687 Bytes

PayPalSampleForiOS

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)

alt tag

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()
            })
        }