Dapp

the App Design App
  • Homestarting page
  • Blog jibber jabber
    • New Features request a new feature
    • In Development what I'm working on now
    • Coming Soon planned updates :)
  • Support get help
    • Dapp Tutorials learn about Dapp
    • FAQ frequent questions :)
    • Known Bugs report bugs here!
  • Servicesdev help :)
  • Contact Usget in touch

Issues

Dapp 1.2.4 Patch submitted to Apple

Nov 25, 2010 0

I have found and corrected the issue affecting iOS 4.2 users in Dapp. Specifically, any changes to an on/off (boolean) setting were not being applied. The error was caused by a change in iOS 4.2 that now causes the iPhone to wait until the on/off animation is complete before applying the new isOn setting.

The patch has been submitted to Apple and should be available in the next week or so.

Thank you to everyone for your patience in this matter.

To your app success!,
Cliff

P.S. Technology is only a small part of your app success. There is the business, sales and marketing that you need to think of too :). Which is why I also provide a bunch of free education on how to succeed on the App Store - http://kerofrog.com :).

iPhone 4 latest iOS patch for non-updating settings

Nov 23, 2010 0

I’ve finally managed to get my hands on an iPhone 4. Blame our lack of supply in Australia :( . I was also happy to wait as I felt that the iPhone simulator would allow me to handle testing and debugging for iPhone 4 devices.

Of course, Murphy’s law stepped in and created a bug that only affected physical iPhone 4 devices with the latest iOS. From what I have gathered so far, the issue is that any ‘switch’ (boolean) settings are not being saved when a change is made. Now that I have an iPhone 4, I’ve been able to reproduce the issue and can submit a patch to Apple as soon as possible.

I’ll add a new post when the patch is submitted to Apple. Thank you to everyone for your patience.

To your app success!,
Cliff

P.S. Technology is only a small part of your app success. There is the business, sales and marketing that you need to think of too :). Which is why I also provide a bunch of free education on how to succeed on the App Store - http://kerofrog.com :).

Help us find and fix Bugs

Oct 28, 2010 2

I’ve received a few bug reports about a bug that has resurfaced where the positioning and size of UI Objects is not being handled correctly.  In the past, this was due to ‘International’ settings where a comma is used instead of a decimal point to show decimal places.  This was corrected by making sure to return ‘localized’ versions of strings/values.  Unfortunately it is happening to some people again on iPhone 4 devices with latest OS, and this time I am unable to reproduce the issue on my end.

If possible, if you are able to successfully reproduce bugs through a series of steps then please report the issue to us at dapp@kerofrog.com.au

The questions that will help us find the issue are:

1. What iPhone model are you using?
2. Which version OS do you currently have installed?
3. If you have a non-english international setting, which international setting are you using?
4. What are the steps to reproduce the issue? (to allow troubleshooting and fixing)

On my side, I’ll be refactoring and improving the code which might correct some of the more isolated/rare bugs that pop up.

To your app success!,
Cliff

P.S. Technology is only a small part of your app success. There is the business, sales and marketing that you need to think of too :). Which is why I also provide a bunch of free education on how to succeed on the App Store - http://kerofrog.com :).

Patch to fix issue running Dapp on iPhone OS 3.1.3 devices

Sep 22, 2010 0

Hi Guys,

Just found an issue when trying to run Dapp on iPhone devices running OS 3.1.3 and earlier.  Thank you to the user that reported the bug.

To our fellow developers out there, conditional statements on running OS 4.0 specific code is probably a good idea :) .

This patch is now in review with Apple.

To your app success!,
Cliff

P.S. Technology is only a small part of your app success. There is the business, sales and marketing that you need to think of too :). Which is why I also provide a bunch of free education on how to succeed on the App Store - http://kerofrog.com :).

Dapp version 1.2 (OS 4.0) not compatible with iPad 3.2

Aug 29, 2010 0

Unfortunately, it seems that the latest iPad 3.2 OS is not compatible with iOS 4.0 which is what Dapp 1.2 had to be built with to support the iPhone 4 retina display.

Just waiting for the Apple Event today, hopefully they announce iPad OS 4.0.  If not, then I’ll have to roll back Dapp to 3.1.3 OS which means Live Preview gets to stay but the retina display support will no longer work.  As such, when Dapp 1.2.1 is available, this will be an optional upgrade for those using iPhone 4 devices.

To your app success!,
Cliff

P.S. Technology is only a small part of your app success. There is the business, sales and marketing that you need to think of too :). Which is why I also provide a bunch of free education on how to succeed on the App Store - http://kerofrog.com :).

Non-english international settings issue

Jun 16, 2010 0

Users with non-english international settings on their iPhone may experience issues with Dapp. This can be corrected by changing international settings to english. A patch to support international languages has been submitted to Apple and should be available soon.

Update: The patch is now available (Version 1.1.1) and should solve issues for our non-english users.

To your app success!,
Cliff

P.S. Technology is only a small part of your app success. There is the business, sales and marketing that you need to think of too :). Which is why I also provide a bunch of free education on how to succeed on the App Store - http://kerofrog.com :).

Version 1.1 single page code export

Jun 9, 2010 2

We have found a small issue with the code generation when exporting code from a project that has only one page or exporting code from page options. To fix this, find the following segment in the [PageName]ViewController.m file. The following example assumes a name of Page1 has been set.

// Link this view controller to our Dapp generated view
UIView *page1View = [[Page1View alloc] init];
self.view = page1View;

Replace the middle line that has the alloc/init code with the following code.

UIView *page1View = [[Page1View alloc] initWithParentViewController:self];

Please note that this only affects projects/designs with a single page or when using page options code export. This issue will be fixed in the Version 1.1.1 patch.

To your app success!,
Cliff

P.S. Technology is only a small part of your app success. There is the business, sales and marketing that you need to think of too :). Which is why I also provide a bunch of free education on how to succeed on the App Store - http://kerofrog.com :).

Rare Version 1.0.1 Bug Reports

May 29, 2010 2

We have had two separate bug reports about a rare instance of users not being able to permanently create new objects in their pages.  Unfortunately, we are unable to reproduce this bug.  Even when testing with the same iPhone version and OS.

This is most likely due to some issue when inserting these objects into the database.

The next version of Dapp will include more robust error reporting features that will inform us of any database errors.  Hopefully, through this we can track down the cause of this issue.

Please contact us at dapp@kerofrog.com.au if you are getting any errors so that we can address them as quickly as possible.

Update: This was an issue with non-english international settings. This has been addressed in an update currently in review with Apple.

To your app success!,
Cliff

P.S. Technology is only a small part of your app success. There is the business, sales and marketing that you need to think of too :). Which is why I also provide a bunch of free education on how to succeed on the App Store - http://kerofrog.com :).

  • Categories

    • Admin (7)
    • Dapp iPhone SDK Tutorials (18)
    • Issues (8)
    • Kerofrog (1)
    • News (20)
    • Personal (1)
    • Screenshots (6)
    • Updates (16)
  • Recent Posts

    • iOS Movie Player tutorial with Xcode 4 and Dapp
    • How to add an Interactive MapView to your iPhone project – Dapp + Xcode 4 iOS Tutorial
    • How to Send Email – Dapp + Xcode 4 iOS Tutorial
    • Good or bad iOS dev?
    • New Movie Player feature teaser and steps for how to use it
  • Archives

    • May 2012
    • April 2012
    • March 2012
    • January 2012
    • December 2011
    • October 2011
    • June 2011
    • May 2011
    • April 2011
    • February 2011
    • November 2010
    • October 2010
    • September 2010
    • August 2010
    • June 2010
    • May 2010
    • March 2010
    • February 2010
    • January 2010
  • Tags

    actions AR Augmented Reality Basic RSS Reader Bug Reports Dapp Dapp HD Dapp Project Dapp Sale Dapp Update Documentation events FAQ guidelines International Settings iPad Mockups iPhone 4 iPhone Code Generator iPhone programming tutorial iPhone SDK Tutorial iPhone Simulator iPhone UI Design Issues Layar Player SDK live preview Mockups Movement Handles PDF Wireframes Prototypes Requirements Tab Bar Controller UI Actions UI Events UINavigationBar UINavigationController UIScrollView UIScrollView Tutorial UISwitch isOn Setting Change 4.2 UITabBarController UITableView Updates View Xcode 3.2.2 Xcode 3.2.3 Beta Xcode 4
  • Links

    • Dapp
    • kerofrog
  • Home| starting page
  • Blog | jibber jabber
    • New Features | request a new feature
    • In Development | what I'm working on now
    • Coming Soon | planned updates :)
  • Support | get help
    • Dapp Tutorials | learn about Dapp
    • FAQ | frequent questions :)
    • Known Bugs | report bugs here!
  • Contact Us| get in touch

Copyright © 2008 kerofrog