-
Access Control in Swift 3
If you are doing programming for a while, you have often heard of some weird keywords like open,public,internal,file-private and private. Before we dive into those keywords, we must know one important thing “Module“. module is just a bundle of code. single Xcode project/framework/bundle is considered as a single module. Even UIKit is considered as one…
-
Creating Apps Using Phonegap Framework in IOS
Creating apps for different operating system is not a reliability so for reducing developr work for all devices, the phonegap framework comes into picture with a highly responsive for all devices, write program in Javascript/Jquery and give a build in any platform. So here i am going to demonstrate the “HOW TO GENERATE IOS BUILD…
-
Memory Management in iOS
Memory Management iOS In this blog we will walk through very important thing which all iOS developer should always need to take care while developing apps for same. We will see few topics related to this thing which is below :- What is the term memory management? What may happen if we don’t do memory…
-
Implementing iOS Setting Bundle
iOS Setting Bundle:- Actually sometimes we need to interact our app i.e giving some input value or changing some default value or use default value unless we are not changing that value in that case we need to create one app setting which will be outside the app but once we click on Setting in…
-
Base64 encoding in Objective c
When we have some binary data that need to send across network, we generally don’t do it by just streaming the bits and bytes over the wire in a raw format. Why ? Because some media are made for streaming text. You never know some protocols may interpret your binary data as control characters (like…
-
Wireless Ad-Hoc distribution for iOS apps
Creating Ad-Hoc is an important part of iOS app development because it helps us in testing the app during development phase. Here is distribution process through dropbox in which just need to click on a link of html and you are done with installation. In this process need to share that same link(public link of…
-
iOS qrcode generator
Have you heard of QR Codes yet? Here is a quick introduction:- QR is short for Quick Response . It is used to take a piece of information from a transitory media and put it in to your cell phone.It is more useful because it can store much more data, including url links, geo coordinates,…
-
How to Create a Provisioning profile for iOS
To Run an app on iOS device,you must have a Provisioning Profile installed on your device. Steps to create provisioning profile:- 1.Login here on iOS developer center(https://developer.apple.com/devcenter/ios/index.action). Note that if you are not a registered Apple iOS Developer, you will need to sign up for this program before proceeding 2.Select Provisoning Profile option from left panel.…
-
How to check network reachability in iOS
What is network reachability? Now, you are all set to program your app on the ios device? Here is one last thing which you also need to consider before you start digging it out. Network reachability, have you heard of this term? If not, here is a simple description of what it is. Your application…