Tag: CocoaPods
Clear CocoaPods cache, re-download and reinstall all pods
Here is the code snippet to clear CocoaPods cache then re-download and reinstall all pods. rm -rf “${HOME}/Library/Caches/CocoaPods“ rm -rf “`pwd`/Pods/“ pod update Source
Building an iOS Photo Search App with Pixabay API, Alamofire, and SDWebImage
In this tutorial, we’ll walk through the steps to create a demo app that retrieves photos from Pixabay based on search text and displays them in a UICollectionView. We’ll also cover how to integrate third-party libraries using CocoaPods. Pixabay API First, register your app with Pixabay and obtain an API key. You’ll need this key…