I like Apple's Maps app, but a number of times it's taken me to a location that simply didn't exist: an Indian restaurant, a zoo, a hotel in a small town, a Chinese restaurant. I diligently follow Siri's directions and when she says I've arrived, the establishment in question is nowhere to be seen. And in several of these cases probably never existed. If you've had similar problems and prefer maps from third parties such as Google, you can now conveniently access these maps from within Apple's Maps app.
Tip of the Day: How to Search Within a Web Page
By Jim Karpen
Often when you're searching the web for some particular bit of information, your search pulls up a long page of text. But you then have no idea where on that page to find the information you're looking for. The next step is to search within the page. The way to do that on iOS devices is simple, but not obvious.
Swift Programming 101: Inheritance & Polymorphism
By Kevin McNeish
In previous posts I have touched on inheritance in Swift. In this post, I'm going to be diving deeper and giving you a fuller picture of how inheritance works in Swift, and how you can use it to create apps that are easy to extend when you need to add new functionality. Along the way, you will also learn about the important concept of polymorphism and learn how to use Xcode's new playgrounds!
Tip of the Day: See the Time Messages Were Sent
By Jim Karpen
One of the useful features of email is being able to see exactly when an email was sent. However, unlike Mail, the default view in Messages doesn't show the time when messages in a thread were sent. Messages are time-stamped just as emails are—you simply need to know how to view the time stamp.
Tip of the Day: Send Audio Messages in iOS 8
By Jim Karpen
One of the great new features in iOS 8 is the ability to send an audio message. Sometimes it's simply a lot more convenient to make a quick recording than it is to type a message. Why not simply call the person? Because convention requires that we then engage in conversation. An audio message is more efficient. And the party you're sending it to can listen at his or her convenience rather than having to answer the phone.
New iPad Includes a Barometer
By Nate Adcock
As a former weather guy, one part of the Apple announcement today really sparked my interest. The new iPad Air 2 will include a barometer. This both excites and makes me wonder just how well this feature will be harnessed. It is likely this is the same sensor introduced in the iPhone 6, though I admit that I haven't been able to test apps leveraging the feature yet.
September 12 Apple iPhone Event Starts at 10 a.m. PT/1 p.m. ET
By Sarah Kingsbury
Swift Programming 101: Generics-A Practical Guide
By Kevin McNeish
If you have read Apple's documentation on Generics and were left wondering how you could use this technology in your own projects, this post is for you! You will learn how to take full advantage of generics in your every-day code as well as how to avoid the constant type-casting that usually results from creating generalized code.
iOS 8 finally brought the ability to customize the iPhone and iPad interface by allowing you to add widgets to the Today screen in Notification Center. In an earlier post, I explained the simple steps for doing this. You simply swipe down from the top of the display to view the Notification Center and tap on the Edit button at the very bottom. This reveals widgets that are associated with apps that you already have installed on your device. You simply tap on the green button to add a widget.
Vidget (free) is different. Instead of being an app such as ESPN Sport Center with an associated widget, its sole function is to let you easily add a bunch of widgets to your Today screen, with about 20 different widgets currently available.
Swift Programming 101 - Understanding Access Control
By Kevin McNeish
Access Control is one of the late-breaking features added to the Swift language. It allows you to specify the parts of your code you want to make public, and the parts you want to hide. It's an important tool in creating easy-to-use, and easy-to-understand interfaces.