This Week's Sponsor:

Copilot Money

The Apple Editor’s Choice Award App for Tracking Your Money. Start Your Free Trial Today


Posts tagged with "iPad"

Jim Dalrymple on the iPad Air

This smaller size is great. If you have decent sized hands you can type with two thumbs on the iPad in portrait, something I wasn’t really able to do with the last generation iPad without a lot of stretching. Clearly a full-size iPad is not something you will be thumb typing with all the time, but it does give you an idea of how much smaller the iPad Air is.

Jim’s review addresses a point that I was curious to know about, and he also talks about battery life with the LTE model he reviewed.

Permalink

Ben Bajarin’s Review of the iPad Air

When recommending products to consumers I always encourage them to look at it as an investment. Whether someone is buying a PC, TV, smartphone, or tablet, it is best to get one that is worthy of your money and will last. What makes the iPad Air interesting–from the view of personal computing–is the A7 processor.

Much has been written about the power of the A7. Creativity apps like iMovie and GarageBand run extremely smoothly and fast on the A7. I made a 4-minute high definition movie on the iPad Air and it exported in just under one minute. When I attempted the same on the iPad 4 it took just over three minutes. When it comes to exporting movies or even compressing video or a photo to upload to the web, send in an email, or even using AirDrop the A7 does it all faster.

Ben’s review of the iPad Air is different from the ones that have been published this evening, and he offers some practical advice.

Permalink

“A Knowledge Generation Tool”

Craig Hunter (via Daring Fireball):

I often see debates about whether the iPad is a “content-creation” or “content-consumption” device, but I think that’s a simplistic way to look at it, likely drummed up by folks with limited focus. The iPad, along with apps from thousands of developers and the ingenuity and creativity of customers, has become a knowledge generation tool across the spectrum. It’s being used out in the real world to obtain tangible results with a real impact on the way we live.

It’s funny that, after three years and with all the evidence we have, many of us are still asking why the iPad needs to exist. Normal people who don’t write on tech blogs have the answer.

Permalink


Reinventing iOS Automation: Editorial Review

Editorial for iPad

Editorial for iPad

Update: I have turned this review into an interactive book with additional & exclusive content. You can find it on iTunes, on sale for a limited time. More information is available here.

Ole Zorn knows how to push the boundaries of iOS. His latest app, Editorial for iPad, redefines the market of text editors for iOS, and, in many ways, sets a new standard for iOS automation and desktop-class apps. Editorial makes me want to work from my iPad.

Before I get to the details, allow me to offer some backstory to properly contextualize Editorial and the process that led me to its launch today. I have been testing Editorial for the past eight months (since late November 2012, when I received the first beta build), and I’ve seen the app go through numerous iterations and changes. At one point I wasn’t even sure Editorial would come out anymore. Editorial has become the essential part of my iOS workflow, and it only seems fair to have a proper introduction.

Read more


Google Maps for iPad Now Available

With a 2.0 update released today on the App Store, Google has brought Google Maps to the iPad, adding the enhancements and new features that the company announced last week.

Google Maps, first released in December 2012 following Apple’s apology for issues with their own iOS 6 Maps service, can now take advantage of improved navigation with accident information and live traffic reports whenever available; using Zagat and Offers, Google Maps can now recommend the best places around you with reviews and exclusive deals; for selected areas, Google Maps features indoor mapping for malls, train stations, and airports.

Results for businesses are displayed on a grid that shows inline photo previews, distance from your current location, and total amount of available reviews; tapping on a result brings up a dedicated page with buttons to save, share (via Message, Mail, or Clipboard), get directions, see Street View, and view photos.

The app now puts more focus on discovering places to “eat, drink, sleep, and shop” with a new card-based layout that aims at simplifying the process of finding nearby businesses. As we expected, Maps for iPad follows Google’s relaunched web app and client for Android tablets in the way it displays large, full-screen map views with search boxes and “cards” on the left side of the screen to find places, see suggestions, and preview directions. A list button in the top left corner of the app allows you to view Traffic and Public Transit information (if available for your area); directions are displayed in a floating card with alternate routes stacked directly below it. Overall, the iPad app is consistent with the design language and animations of the iPhone app and redesigned web experience.

It’s also possible to cache a portion of a map for offline usage (what Google calls “pre-loading”). Simply zoom into an area, and search for “OK Maps” to activate the command that will tell the app to save a cache of the currently displayed area. In my tests, this indeed enabled me to load cached areas with no Internet connection available – without, however, being able to use search or anything else. Also, if you try to save larger areas with the “OK Maps” command, Google will warn you that the map is too large for pre-loading.

Google Maps 2.0 is available on the App Store.


Google Announces Google Maps App Coming to iPad “Soon”

In a a blog post published today to detail the new features of Google Maps for Android devices, Google has announced that the app will also be released for iPad “soon”. Following the removal of the native, Google-based Maps app in iOS 6 (replaced with a new Maps app using Apple data), Google released a native iPhone app last December.

In describing the tablet version of Maps for Android, Google says that the larger screen makes “exploring the world from the comfort of your living room much more fluid, smooth and fun”. Based on the Android screenshot shown on Google’s blog, it appears the Maps app for iPad may be somewhat influenced by the new Google Maps for the web with fullscreen map views and floating cards for menus and discovery.

The updated Google Maps app will focus on exploration to browse and discover new places through a new cards interface that shows “great places to eat, drink, sleep and shop”. Alongside improvements to navigation and reporting of traffic conditions, Google will also bring Zagat and Offers integration, retire Latitude and My Maps, and release new location sharing and check-in options for Google+ (coming soon to iOS). According to Google, the My Maps functionality will return to future versions of the app.

You can read Google’s blog post (with screenshots of the new Google Maps app for Android) here.


Getting Safari’s Selection on iPad As HTML With A JavaScript Bookmarklet

I modified this bookmarklet posted by “Tim Down” on StackOverflow to send selected text from Safari to Drafts as HTML. The result is the following code:

javascript:(function(){var%20h="",s,g,c,i;if(window.getSelection){s=window.getSelection();if(s.rangeCount){c=document.createElement("div");for(i=0;i<s.rangeCount;++i){c.appendChild(s.getRangeAt(i).cloneContents());}h=c.innerHTML}}else%20if((s=document.selection)&&s.type=="Text"){h=s.createRange().htmlText;}window.location='drafts://x-callback-url/create?text='+(h);})()

So let’s say you want to grab the first paragraph in this post. Normally, in Safari for iPad you’d end up with the plain text fetched by window.getSelection:

This is a fantastic report with lots of data points for any developer trying to get their apps featured by Apple. Dave Addey’s highly interactive regional graphs and notes are very well done. Be sure to check out Dave Addey’s other works on his main blog.

As you can see, formatting and hyperlinks have been removed. With the bookmarklet above, you’ll receive the HTML version of the selection – which looks like this. But what’s the point?

My idea was that I wanted to be able to automate the process of capturing rich text from iOS’ Safari; I wanted to achieve the same kind of functionality I have on the Mac, where rich text can be dragged from Safari or Chrome and dropped into Evernote, preserving styles, hyperlinks, and images. I thought that combining HTML output with an Evernote Append action (with the “Send as Markdown HTML” option turned on) would let me receive valid HTML content in Evernote starting from an iOS workflow. And, for the most part, I was right, because the workflow does mostly work.

As it turns out, Evernote is extremely cautious with the HTML tags they accept, and the ones that are supported follow the XHTML guidelines as ENML is a superset of XHTML. This means that my bookmarklet will work for something as simple as selecting a single paragraph, but may easily fail with multiple selections, inline images, complex styles, and so forth. When that will happen, Drafts will return an error when trying to append HTML to Evernote; obviously, this will work just fine with Dropbox, which doesn’t care about the kind of text you’re using in your actions. Even better, this should work very well with Textastic’s just-released update that supports x-callback-url.

I guess the solution would be to build a Pythonista-based converter for Evernote-approved XHTML tags and place it between Safari and Drafts, converting HTML tags Evernote won’t like to compatible ones. If you’re interested, my birthday is August 10.

Permalink