COCOAPODS | CDN: trunk URL couldn’t be downloaded: https://cdn.cocoapods.org/deprecated_podspecs.txt Response: 500
Editare il file Podfile ed aggiungere in testa questa riga: source ‘https://github.com/cocoapods/specs.git’
Appunti, stralci di programmazione e altro
Editare il file Podfile ed aggiungere in testa questa riga: source ‘https://github.com/cocoapods/specs.git’
Dopo aver creato il progetto in Xcode, eseguire i seguenti comandi: pod spec create Peanut edit Peanut.podspec pod spec lint Peanut.podspec pod trunk register orta@cocoapods.org ‘<nomeLibreria>’ –description='<descrizione della librearia>’ pod…
Aggiungere ad info.plist: <key>UIUserInterfaceStyle</key><string>Light</string>
Aggiornare la versione della libreria pod nel file Podspec effettuare il push di tutte le modifiche sul branch master creare un tag relativo alla nuova versione: git tag “versione” git…
Aprire XCode, menù Window -> Organizer Selezionare l’app interessata, tasto destro “Mostra in Finder” Tasto destro sull’app, “Mostra contenuto pacchetto” Tasto destro sulla cartella “dSYMs” e zippare il contenuto Caricare…
let _label = UILabel() let size: CGFloat = _label.font.pointSize let name: String = _label.font.fontName
Aprire il terminale e spostarsi nella cartella di root del progetto e poi eseguire i seguenti passi una volta che la repository remota (nell’esempio è riportata una repository creata su…
override func viewDidLoad() { super.viewDidLoad() let _btBack = UIButton(type: .Custom) _btBack.addTarget(self, action: "returnToRoot:", forControlEvents: UIControlEvents.TouchUpInside) _btBack.setImage(UIImage(named: "arrow-left")?.imageWithRenderingMode(.AlwaysTemplate), forState: .Normal) _btBack.imageView?.tintColor = UIColor.whiteColor() _btBack.sizeToFit() self.navigationItem.leftBarButtonItem = UIBarButtonItem(customView: _btBack) self.navigationController?.setNavigationBarHidden(false, animated:true) }…