Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
iOS Articles
Page 7 of 19
How can iOS Causes Breakdown in Great Devices?
Every iPhone user has an unusual habit of displaying their Apple logo so that onlookers can check it out. If someone owns an iPhone and wants to take pride in it, it’s okay for few minutes, but dude- why the show-off? The entire world knows of iPhone, which is more than the Apple logo displayed. No, I am not jealous that I don’t own an iPhone, it just doesn’t give me the phony vibe. A few days ago I happened to check out this gold iPhone 5. I didn’t check it’s features or drawbacks, I just saw the phone and ...
Read MoreWWDC 2017- What is Coming From Apple
In the recently concluded Apple’s Worldwide Developer Conference (WWDC), the technology giant revealed its upcoming versions and products that can create a rave in the market once released. The prime focus was on the upgrades of its existing products with higher performance that can enhance ultimate user experience. It has updates for almost all its existing products, be it iPhone, Mac laptop, Watches, TVs to IPad Pro and also the brand new Siri-enabled Homepod.The WWDC event of Apple is a yearly event which lasts for a week. That is the platform where Apple announces its upcoming technology which many of ...
Read MoreWhat are the Few Pitfalls of the newly launched Apple's iOS 10?
Every time there is an update from the so called posh brand “Apple”, people go nuts for its latest news. so what are those special features? If one is willing to pay such price for a Smartphone, then best quality comes by hand. But lately, Apple is not standing up to the expectations of its name.Apple is not having a very good time lately. In fact, every new update or addition to the new operating system makes it a little worse than it was earlier. This could be seen clearly by the mess created by Apple’s iOS 10, with a ...
Read MoreMega ios updated with new photosync and passcode lock features
There are many cloud storage providers in the market, but there is only one provider who has aimed to provide cloud storage app with improved privacy and security options – MEGA. Kim Dotcom’s cloud storage service Mega version 1.1, the official iOS app, has just got its first update with two new features – PhotoSync and passcode lock.PhotoSyncIf user wish to store their images, videos and other data in the cloud there is now no shortage of providers to select from. The major apps Dropbox, Google Drive, Box or Microsoft’s Skydrive basically give much related services, but lesser-known alternatives are ...
Read MoreHow to prevent the screen from sleeping in iOS?
In this post we will be seeing how to prevent screen from sleeping in iOS.So, let’s get started.Copy the below line of code in viewDidLoad method in ViewController.Swiftoverride func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view, typically from a nib. UIApplication.shared.isIdleTimerDisabled = true }Run the application, the application will never go in sleep mode.
Read MoreHow to create Tab Bar Layout in an iOS App?
In this post we’re going to see how one can use tab bar layout in their application.As per apple’s documentation −A tab bar appears at the bottom of an app screen and provides the ability to quickly switch between different sections of an app. Tab bars are translucent, may have a background tint, maintain the same height in all screen orientations, and are hidden when a keyboard is displayed. A tab bar may contain any number of tabs, but the number of visible tabs varies based on the device size and orientation.You can read more about the same herehttps://developer.apple.com/design/human-interface-guidelines/ios/bars/tab-bars/So let’s ...
Read MoreHow do I programmatically "restart" an iOS app?
You cannot restart an iOS Application in any case, even if you’re able to do using some private api your application will be rejected by Apple and will not be considered for App store release.
Read MoreHow to create a file, write data into it and read data from it on iOS?
Being a software developer we should be always aware of how to play with files, write to a file, read from the file and so on.In this post we are going to learn the same, we will be creating a file and writing the data to the file and later reading through the same file.So let’s get started, Step 1 − Create new Xcode Project → Single View Application → name it “ReadingWritingFile”Step 2 − Open ViewController.swift and add new function as show belowpublic func createAndWriteFile() { }Now we will create a file and will print the path of the ...
Read MoreHow to call a method after a delay in Swift(iOS)?
In this post, we will be seeing how you can delay a method call using Swift. Here we will be seeing how you can achieve the same in two ways, So let’s get started, We will be seeing both the example in Playground, Step 1 − Open Xcode → New Playground.In the first approach, we will be using asyncAfter(deadline: execute:) instance method, which Schedules a work item for execution at the specified time and returns immediately.You can read more about it here https://developer.apple.com/documentation/dispatch/dispatchqueue/2300020-asyncafterStep 2 − Copy the below code in Playground and run, func functionOne() { let delayTime = ...
Read MoreHow to rotate an image in imageview by an angle on iOS App using Swift?
Images are everywhere almost in all application, you might have come across many applications like gaming applications where you see images getting rotated.So, In this post, we will be seeing how to rotate the image in an image view by an angle in an iOS application.So, Let’s get started, Step 1 − Open Xcode→SingleViewApplication→name it RotateImage.Step 2 − Open Main.storyboard, add UIImageView and add 2 buttons as shown below name them ROTATE BY 90 DEGREES AND ROTATE BY 45 DEGREES. Add some sample images to UIImage View.Step 3 − Create @IBAction for both buttons and name them as rotate45button and ...
Read More