Posts Tagged “app”

Wednesday, December 1, 2010 Categorized under iPad, iPhone, News Wall, Programing, RSS, Updates, Web

News Wall 2.0 on the way

Major update 2.0 of News Wall for iPhone and iPad has been submitted to Apple’s review team. Even though it is the first update of the app it deserves being a major update. Here are the most important changes:

  • new article style combining images and text
  • advanced article reading view with next/previous buttons
  • completely rewritten feed fetching core
  • really fast feed loading
  • improved feed reading so nearly every feed can be used
  • search feeds by keywords

News Wall Free now runs both on the iPhone and the iPad. It displays ads and has some limitations when it comes to social sharing.

The update will hit the App Store during the next day. Feel free to contact me (you can do this directly in the app now).

Tuesday, November 30, 2010 Categorized under iPad, iPhone, News Wall, Paper Pile, RSS, Updates

Paper Pile Update 1.3.2 is coming

Apple just approved Paper Pile’s update to version 1.3.2. Running on iOS 4.2 the app crashes when trying to fetch new stories. This update fixes the issue.

During the next weeks, Paper Pile will get a new feed fetching core which is incredible fast. It will debut as part of the next News Wall update in a few days.

Wednesday, November 24, 2010 Categorized under iPad, Paper Pile, RSS, Updates

Paper Pile crashes after iOS 4.2 update

After updating your iPad to iOS 4.2 you’ll notice that Paper Pile crashes when updating feeds. This happens because of a bug at the XML-RPC framework the app uses. I’ll fix this and submit the update to Apple as soon as possible. I apologize for the time you cannot use Paper Pile.

Friday, July 9, 2010 Categorized under iPad, iPhone, News Wall, RSS, Tipps & Tricks

How to add feeds to your wall

After starting News Wall for the first time two feeds are already there. You can add as many RSS feeds as you like. First, open up the settings screen by tapping on the little (i) at the top right corner.

Now press the “Edit” button at the top of this screen. Besides deleting and re-ordering feeds, you now can add a new feed by pressing the “plus” button which is right handed at the top.

There are two ways to subscribe to a feed. First, just enter the URL of a webpage or a feed and press on “Validate”. Second, open the build-in Feed Browser by tapping on “Open Browser”.

When using the Feed Browser you navigate to the page you want to use. When a feed is found, the RSS icon get visible. By tapping on it you open the list of discovered feeds. Now you simply need to select the desired feed. That’s it.

The screenshots are taken from an iPad. The screens look different on an iPhone but they work exactly the same way. This applies both to the paid and the free version.

Friday, July 9, 2010 Categorized under iPad, News Wall, Updates

Connection Error when News Wall starts

User’s are expierencing an error when automatic loading is enabled. After starting the app, News Wall cannot connect to its backend server.

This only happens on iPad. The update has already been submitted.

Tuesday, July 6, 2010 Categorized under iPad, iPhone, News Wall, RSS, Tipps & Tricks

How to mark all articles as read

When you read an article it gets marked as read automatically. Every feed displays the number of unread articles. The sum of all articles statistics is shown at the top of your screen. When you tap on this black bar, the wall menu appears giving you the opportunity to mark all articles as read. This means really all articles.

Furthermore, you can mark all articles of a single RSS feed simply by tapping and hold on the feed itself. This open the feed menu where you – again – have the option to mark the articles as read. This works both on iPad and iPhone.

Monday, July 5, 2010 Categorized under iPad, iPhone, News Wall, RSS, Tipps & Tricks

How to scroll through hundreds of articles

After using News Wall or News Wall Free for some days you probably will have hundreds of articles especially when you use high-volume RSS feeds like engadget.com, 9to5mac.com or gizmodo.com. It can be a lot of work to scroll back to the first article, primarily on iPhone. However, there already is a built-in “jump to the first article” feature: just double-tap the title bar of the feed you want to be moved to the front.

Of course, this works on your iPad as well. This applies both to the free and the paid version.

Saturday, July 3, 2010 Categorized under iPad, iPhone, News Wall, Tipps & Tricks

How to refresh a single feed

Sometimes you may want to refresh only one of your RSS feeds. This is much faster than refreshing all your feeds. Doing so is really easy. Tap and hold on the one article of the feed you want to refresh to open up a menu. This menu contains a refresh button.

Feed menu on iPhone

Feed menu on iPad

Please notice that News Wall’s backend system caches feeds for 2 minutes. You will not receive new articles within this time. This applies both to the free and the paid (iPhone & iPad) version.

Friday, June 25, 2010 Categorized under Programing

How to add notification sounds to your iOS app

Whenever your app finishes work it should notify the user. Adding a short notification sound is one of the simplest things you can do.

First, you need to get a nice sound sample. There are some websites providing clicks and dings and dongs and swuuushes. I love www.oringz.com because the sounds are great and free (it’s always nice to tell author what you gonna do with his work). Place the mp3 file somewhere in your project so it will get in your bundle.

Now to the coding part. Add another framework called “AVFoundation” to your project. It includes the class we will use. Now you need to decide where you want to invoke the playback. I mostly take the main view controller where I import the AVFoundation headers:

#import <AVFoundation/AVFoundation.h>

An instance variable holds the sounds so we do not need to re-create it every time we want to play it:

AVAudioPlayer *newMessageAudioPlayer;

To actually play the sound, we need a little method doing the dirty work:

-(void)playNewMessagesNotification {
	if (newMessageAudioPlayer == nil) {
		NSURL *audioFile = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"notification1" ofType:@"caf"]];
		newMessageAudioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:audioFile error:NULL];
	}
	[newMessageAudioPlayer play];
}

The dirty work done here isn’t dirty at all. It checks if the audio player does exist and of not it creates it by passing a NSURL holding the mp3 filename from the bundle. After creating (or not creating) the player itself it simply starts the playback.

Finally we need to clean up. There are two things to consider. Of course, the instance variable needs to be releases when the class itself gets deallocated. And you should be aware of the memory the sound occupies when hanging around as instance variable. Lucky us, we can easily release the sound in cases of low memory since the play method re-creates it if necessary. So add this to the view controllers didReceiveMemoryWarning method:

[newMessageAudioPlayer release];
newMessageAudioPlayer = nil;
Thursday, June 24, 2010 Categorized under Portfolio

News Wall for iPad & iPhone

News Wall is a news feed reader for iPad and iPhone with an extraordinary different interface. It has been designed to support skimming so users can focus solely on the content. Both the paid app and a free version including ads support fast app switching and the Retina Display.

What is it all about

News Wall reads RSS feed so you have the choice which content you want to use. Every feed is displayed as a scrollable row containing the feed’s items side-by-side. These rows can be collapsed so the display space is used in the most efficient way.

Share what you like

While reading your news you can easily share them via Twitter or e-mail. Furthermore, articles can be saved using Instapaper and Read It Later.
Of course, URL shortening via Bit.ly is supported as well. You even can hook up your own Bit.ly account so you keep track of the clicks.

Be prepared

News Wall runs both on iPhone and iPad requiring iOS 3.2 or higher. It supports Fast App Switching on iOS4 and the Retina Display of the iPhone 4.

Feature Overview

  • Read and manage RSS feeds
  • User interface optimized for fast reading and skimming
  • Auto-discovery of feed address, integrated search to find feeds
  • Instapaper support
  • Read It Later support
  • Twitter support
  • Bit.ly URL shortening support
  • No Internet connection needed to read on the move

Compare Free/Paid

Free Paid
Ad display yes no
Number of Instapaper accounts 1 unlimited
Number of Read It Later accounts 1 unlimited
Number of Twitter accounts 1 unlimited

Stay tuned

Add your mail address to the mail list so you get all the latest news. Please choose the apps you’re interested in.