- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 11 Articles for IPhone

Updated on 28-Jan-2020 11:21:14
September 9, 2015 is going to be an important date for all technology enthusiasts. That is the day of Apple’s annual event that will take place at the spacious Bill Graham Civic Auditorium in San Francisco. Apple usually has a tradition of surprising its enthusiasts and considering the hullabaloo about the event going by, it is expected that Apple is going to make some major announcements in the event.Hey Siri!The world is going crazy overthe innovative invitation technique Apple is following to attract its enthusiasts from world over. Just say “Hey Siri! Give us a hint, ” and the iPhone ... Read More 
Updated on 11-May-2022 09:50:28
The new Apple iPad Pro 9.7 was released lately and we can’t wait to get more of it, as it has been in the news for all good reasons. The relationship of Apple with computing devices has been quite complicated, in general. So it was interesting when news spread out that Apple has designed its new iPad Pro in such a way that Apple’s customers will think of it as a computer.Generally if one asks what a computer is, we generally revert to that one-line definition, “Computer is an electronic device with the ability to receive and manipulate data, with ... Read More 
Updated on 28-Jan-2020 10:34:36
The digital world has always been action packed and aggressively competitive since its existence. With exponentially continuous breakthroughs in the world of science and technology, the tech giants like Microsoft, Google, and Apple have been within a perpetual war against each other and the war doesn’t seem to come to an end in the near future.Unlike other kinds of war, whether real or virtual, instead of destructive consequences, this ‘tech-war’ only has constructive consequences bringing an immense amount of productivity for the end users like me and you. This competition in technology has shaped our present and will define our ... Read More 
Updated on 24-Jan-2020 05:27:57
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 More 
Updated on 20-Apr-2022 10:46:48
Apple Inc. is one of the most successful brands in the market. The company made its mark with its innovative ideas and uniqueness. Steve Jobs, the former CEO and co-founder of Apple Inc., created a massive empire by designing the masterpieces – iPhone, iPod, and MacBook. When it comes to the iPhone, the most appealing part of the phone is its looks.Smartphones like iPhones are always in the limelight for the simple reason that the hardware and software integration done in all the Apple products is simply incredible. The quality of camera, pixels density of the display, and the sound ... Read More 
Updated on 12-May-2022 12:44:41
You want to say something but someone else says it in the best way. Ever faced this kind of situation? When a post in Facebook needs just a touch of spice by adding few characters, but that’s what you don’t have. Well the wait is over GIPHY is on your rescue.Whenever you have a conversation online, GIPHY is there to help you. The GIF catalog is infinitely loaded with pop culture, original animations and real-time information that you can share on your phone, tablet, laptop etc. Every social site that you use twitter, Facebook, Gmail, tinder everyone has put GIFs.GIPHY ... Read More 
Updated on 30-Jul-2019 22:30:26
When you’re on a call, you can hang up the phone by pressing the Side button on your iOS device. This button is also called as sleep/wake up or lock button.The devices and iOS are specifically designed the way that pressing the power button while on a call will immediately disconnects the call. 
Updated on 30-Jul-2019 22:30:26
Storing data is one of the most important thing when we design any application. There are numerous way to store data one such way is SQLite databse.There are multiple ways to access SQLite database on iPhone, We will be seeing the most easiest way to do so in Swift.SQLite is a relational database management system contained in C programming library embedded to an application.In this tutorial we will be creating one sample application which will have a text field to enter the name, we will store the name in our SQLite database and will print the same when user taps ... Read More 
Updated on 30-Jul-2019 22:30:24
To create multiple styles inside a textview we need to use attributed string. The text view in ios has a property attributedText which can be used to style the text inside a text view. We’ll see this with help of an example.First, we’ll create an attributelet attributeOne : [NSAttributedString.Key : Any] = [NSAttributedString.Key(rawValue: NSAttributedString.Key.font.rawValue) : UIFont.systemFont(ofSize: 16.0), NSAttributedString.Key(rawValue: NSAttributedString.Key.foregroundColor.rawValue) : UIColor.blue]Then we’ll create an attributed string with the attribute we createdlet string = NSAttributedString(string: "Text for first Attribute", attributes: attributeOne)Similarly, we’ll create another string with different attribute. Then we’ll initialize the text of textView with the attributed string.Now the whole ... Read More 
Updated on 30-Jul-2019 22:30:24
Processing symbol files is a message displayed on xcode when we create a project’s build. When this message appears, in background Xcode downloads files and symbol files for specific device and a specific processor on which build shall be installed.The symbol files contains debug symbols which are used to debug on specific processor and iOS version and when some crash or error occurs, those symbols are used to create crash reports. Once processing symbols is done a new folder with device symbols is created in the library, usually under “~/Library/Developer/Xcode/iOS DeviceSupport/ “.Sometimes our system might get stuck on this step ... Read More Advertisements