Lickability / PinpointKit

Send better feedback
MIT License
1.13k stars 79 forks source link

Custom Fonts Not Used When Following Manual Install Steps #247

Closed mliberatore closed 6 years ago

mliberatore commented 6 years ago

Reproduce

  1. Create a new Xcode project using the single view template.
  2. Install the latest version of PinpointKit from master using the Manual install steps from the README.
  3. Replace the contents of ViewController.swift with the following, and run the app.
import UIKit
import PinpointKit

class ViewController: UIViewController {

    let ppk = PinpointKit(feedbackRecipients: ["hello@lickability.com"])

    override func viewDidAppear(_ animated: Bool) {
        super.viewDidAppear(animated)

        ppk.show(from: self)
    }
}

Expected Behavior

Custom fonts are used:

cocoapods

Actual Behavior

System fonts are used:

manual