Tip of the Day: Let Siri Help You Decide Where to Eat
By Sarah Kingsbury
You know you want to eat out tonight and you know what time you want to eat. The problem is deciding where to eat. Siri can help you with that.
By Sarah Kingsbury
You know you want to eat out tonight and you know what time you want to eat. The problem is deciding where to eat. Siri can help you with that.
By Sarah Kingsbury
Now that there is no longer an eight tab limit in Safari, it's possible for your tabs to become unmanageable. Fortunately it's easy to move tabs or get rid of them altogether. Here's how:
By Mark Struczewski
Recently, I unsubscribed from all but a few of the email newsletters I receive. Now, when I write “newsletters”, I am referring to those emails that are blog posts. I didn’t unsubscribe from them because the emails were no longer relevant or important to me (they still were) but I did so for two reasons:
1. I was getting a lot of emails. Some sites I subscribe to post several times a day.
2. It was not easy to share the content with my followers on social media via email.
Switch Control, intended for people with mobility limitations, is also great for anyone who fantasized as a child of making things happen with just a blink, à la I Dream of Jeannie. To enable Switch Control, open Settings>General>Accessibility>Switch Control and toggle On.
By Kevin McNeish
Do you have an idea for an app but lack the programming knowledge to begin building it? In this weekly blog series, I will take you, the non-programmer, step by step through the process of creating apps for the iPhone, iPod touch, and iPad. Join me each week on this adventure and you will experience how much fun turning your ideas into reality can be! This is part 36 of the series. If you are just getting started, check out the beginning of the series here.
In my previous post, I provided an overview of using Google App Engine to scale your iOS apps, and demonstrated how to get Google's iOS sample app running on an iOS device so that you can check it out.
Do you have an idea for an app but lack the programming knowledge to begin building it? In this weekly blog series, I will take you, the non-programmer, step by step through the process of creating apps for the iPhone, iPod touch, and iPad. Join me each week on this adventure and you will experience how much fun turning your ideas into reality can be! This is part 35 of the series. If you are just getting started, check out the beginning of the series here.
In my previous post, I discussed making your web-enabled apps scalable by outsourcing your web services to a third-party company, and I provided an overview of the services offered by Google, Amazon, and Microsoft. In this post, I'm going to dive into Google App Engine so you can get a detailed look at how to access web services hosted by Google from your iOS app. I'll provide an overview of Google App Engine's features, and show you how to set up and use Google's iOS sample app.
By Kevin McNeish
Do you have an idea for an app but lack the programming knowledge to begin building it? In this weekly blog series, I will take you, the non-programmer, step by step through the process of creating apps for the iPhone, iPod touch, and iPad. Join me each week on this adventure and you will experience how much fun turning your ideas into reality can be! This is part 32 of the series. If you are just getting started, check out the beginning of the series here.
in this week's post, I'm going to break down the process of installing and running an app on a real iOS device (rather than the Simulator). Even if you think you know everything there is to know about this process, things have changed a bit under Xcode 5, so I recommend you read on!
By Kevin McNeish
Do you have an idea for an app but lack the programming knowledge to begin building it? In this weekly blog series, I will take you, the non-programmer, step by step through the process of creating apps for the iPhone, iPod touch, and iPad. Join me each week on this adventure and you will experience how much fun turning your ideas into reality can be! This is part 31 of the series. If you are just getting started, check out the beginning of the series here.
One of the new features that Apple added to Xcode 5 to improve the management and runtime performance of images is asset catalogs. In this post, I'll give you an overview of how asset catalogs work, and we'll add an asset catalog to the iAppsReview project so you can get hands-on experience with this new technology.
Do you have an idea for an app but lack the programming knowledge to begin building it? In this weekly blog series, I will take you, the non-programmer, step by step through the process of creating apps for the iPhone, iPod touch, and iPad. Join me each week on this adventure and you will experience how much fun turning your ideas into reality can be! This is part 30 of the series. If you are just getting started, check out the beginning of the series here.
For the vast majority of apps that you build, it makes tremendous sense to make sure your app can be sold to as many iOS users in as many countries and languages as possible. The App Store is available in over 150 countries in 40 languages and automatically handles international payments and current conversion for you. All you need to do is make sure your app can support a variety of languages. I'll show you the basic steps in this post as we make the iAppsReview project multi-lingual.
Do you have an idea for an app but lack the programming knowledge to begin building it? In this weekly blog series, I will take you, the non-programmer, step by step through the process of creating apps for the iPhone, iPod touch, and iPad. Join me each week on this adventure and you will experience how much fun turning your ideas into reality can be! This is part 29 of the series. If you are just getting started, check out the beginning of the series here.
As we continue to move the iAppsReview app forward, we now come to a point where we have to climb the learning curve on one of the more advanced Objective-C concepts—blocks. This discussion comes at an unlikely place. This week I'm going to show you how to take the image of a review that you have created in the Write Review scene and display it in the My Reviews scene. This seems like it should be pretty straightforward, but as you will see, it involves using the iOS Assets Library and using Objective-C blocks.
By Kevin McNeish
Do you have an idea for an app but lack the programming knowledge to begin building it? In this weekly blog series, I will take you, the non-programmer, step by step through the process of creating apps for the iPhone, iPod touch, and iPad. Join me each week on this adventure and you will experience how much fun turning your ideas into reality can be! This is part 28 of the series. If you are just getting started, check out the beginning of the series here.
Just about every app has the need to store and retrieve settings that are specific to the user. User settings include information such as name, ID, email address, password, high score (for games), preferences, and so on.
Do you have an idea for an app but lack the programming knowledge to begin building it? In this weekly blog series, I will take you, the non-programmer, step by step through the process of creating apps for the iPhone, iPod touch, and iPad. Join me each week on this adventure, and you will experience how much fun turning your ideas into reality can be! This is Part 27 of the series. If you are just getting started, check out the beginning of the series here.
In many of the built-in iOS apps, such as Settings, you are able to edit information directly in the cells of a table view. This is a nice feature, because you the user doesn't have to navigate to a separate scene just to enter a value. This is especially important when setting up email where there are several values that need to be entered.
By Kevin McNeish
Do you have an idea for an app but lack the programming knowledge to begin building it? In this weekly blog series, I will take you, the non-programmer, step by step through the process of creating apps for the iPhone, iPod touch, and iPad. Join me each week on this adventure, and you will experience how much fun turning your ideas into reality can be! This is Part 26 of the series. If you are just getting started, check out the beginning of the series here.
In my previous post we went through the steps of converting the Write Review scene in iAppsReview to iOS 7 and Xcode 5. In this post we're going to update a few more scenes and learn even more important information about Auto Layout, iOS 7's default edge-to-edge content, and how to specify a global tint for your app!
By Kevin McNeish
Do you have an idea for an app but lack the programming knowledge to begin building it? In this weekly blog series, I will take you, the non-programmer, step by step through the process of creating apps for the iPhone, iPod touch, and iPad. Join me each week on this adventure, and you will experience how much fun turning your ideas into reality can be! This is Part 24 of the series. If you are just getting started, check out the beginning of the series here.
In my previous column, I talked about some of the great new changes in Xcode 5, Apple's tool for creating iOS apps. In this post, I am going to move the iAppsReview project to Xcode 5 and iOS 7 and we'll talk about some of the challenges you will encounter as you move your apps forward.
By Paula Bostrom
Our iPhones and iPads are capable of amazing things, but most of us only use a small percentage of their abilities. In this weekly column I share tips and tricks for beginners, or anyone who wants to harness the full power of their iDevice. This week, I'm going to give you tips on weather, email, text messages, and refreshing apps.
By Steve Overton
I just came across a solution to a problem I never would have figured out if not for the great and powerful "Internets."
I was trying to send a full-resolution photo from my iPad via email. Normally on my iPhone, when I click send, I am presented with a pop up asking what resolution I want. Not so on iPad. Once I chose a photo and clicked to send via email, it automatically loaded the photo in a size that is not full resolution. I went directly to settings and hunted around for anything that seemed like it would control default resolutions. NOTHING!
With the introduction of the iPhone 5s, Apple brought two new features to the device's camera: Slow Mo and Burst Mode. Both new shooting modes help capture great content that you can share with the ones you care about. But sharing Slow Mo vids is more difficult than it needs to be, especially on a service like Instagram. Luckily, we have a simple way to do it.
By Werner Ruotsalainen
UPDATE (06/04/2012): Part II has just been published; it's HERE.
By Werner Ruotsalainen
UPDATE (06/03/2012): I've posted a full article on optimizing Display Recorder on the iPad 3 HERE. The article can also be useful for owners of other models as it explains, among other things, how your videos can easily be rotated, how to achieve the best possible performance etc.
Original article follows:
NULL