Skip to main content

Posts

How to create your cocoapods?

Recent posts

Helper Sites to build your Mobile App

Helper Sites to build your Mobile App ( Primary Stuff ) Idea to App   Following are the links , supporting your journey in transforming an idea into an app   Wireframes Have the screens you want  your  app to a have drawn on paper. Then have the photos of each screen clicked individually , Then use POP  https://marvelapp.com/pop/   . This  app helps you have your wireframes connected, just like an mock app.   Color Theme To decide on the color for your apps use   https://colorhunt.co/   https://www.materialpalette.com/ Visual Design To refer already existing designs use  https://pttrns.com/  , To design VD use  https://www.uxpin.com/   Free icons  (Free for commercial use) https://www.flaticon.com/ https://icons8.com/ https://www.iconfinder.com/free_icons Background Images   use   http://www.resplashed.com/     App Icons   To create app icons use  https://makeappicon.com/   App Store Screen Shots  https://theapplaunchpad.com   http://sketchtoappstore.com/   App Landing Page   To create

iTunes (Apple App Store) release Pre-Requisites

 iTunes (Apple App Store) release Pre-Requisites  This is small note on details to be kept ready before you release you app ( .ipa file ) to apple app store. Following details you need to have in-hand before releasing app to Apple App Store.   Name of the App Privacy Policy URL  Promotional Text  Keywords (This will make you app more available when customers search on app store) Description Support URL Keywords  Marketing URL Copyright App Store Icon( 1024 px X 1024 px ) App Screenshots (Minimum 3),Sizes are mentioned below. (Please ask this with your UI Designer)     For Review Process   Test  Account Credentials  (This is for Apple to run through the app) 1.      Email  2.      Password     Contact Information    The person in your organisation who should be contacted if the App Review team has any questions or needs additional information.   1.      First Name 2.      Last Name 3.      Email 4.      Phone Number App Screenshots Sizes   iPhone screenshot sizes: iPhone 3 (3.5 Inch): 9

Creating Swift Packages

Lets create our first  Swift Package !  iOS Developer level : Intermediate   Configuration when this article was written   Xcode : Version 11.5 MacOS : 10.15.5 (Catalina)   A working example Final code can be found in the Resources section below.   What are Swift Packages ?   Swift packages are reusable components of Swift, Objective-C, Objective-C++, C, or C++ code that developers can use in their projects. They bundle source files, binaries, and resources in a way that’s easy to use in your app’s project. Enough of introduction , let’s be technical… From Xcode 11, we can directly create Swift Package. To ensure our package is rightly developed we will follow the steps mentioned below. Step 1 : We create a single view application , we will have a service (which we later export as swift package) developed here Step 2 : Create Swift Package with the same  single view application just developed, Move our service developed from our app to package. Step 3 : Once we find our service work