OUR BLOG

Thoughts on development, design and the world we live in.



Category Archives: iPad

iOS Enterprise: TestFlight vs. Web

TestFlight supports distribution of Enterprise apps using it’s standard invitation / team management process. This post compares the process of using TestFlight, with the process of using a web server for distribution. TestFlight Distribution of an Enterprise iOS Application Here we document the steps needed for a user to successfully install your Enterprise app using TestFlight, [...]

Enterprise iOS Distribution

With an Apple Enterprise Account, iOS applications may be distributed without the tedious UDID provisioning required for iOS apps that are destined for the App Store.  This lack of provisioning makes over-the-air distribution practical with the very simple user experience of clicking a link on a web page to trigger a download and install of [...]

KIFTests talk

You can use iPhone speech synthesizer to announce runs of integration tests. Hear the sounds what will warm your heart every time. It shows that tests are working. Starting 13 test scenarios If you have Siri on your phone Siri’s voice will pronounce the phrases. VSSpeechSynthesizer could be found in XCode 4.4 in iOS PrivateFrameworks [...]

Uploads got you Down?

Anyone who has attempted to perform a large HTTP file upload from a memory constrained device will quickly discover serious roadblocks.  Using the HTTPBodyStream property of an NSMutableURLConnection instead of HTTPBody is simple enough in theory, but it’s not a s simple as sending a single file.  There are HTTP headers and query string parameters [...]

RubyMotion Block Scope Bug

As a Rubyist, there is not much that is more exciting to me than the idea programming iOS in Ruby. For that reason, I was excited to try RubyMotion (link). Unfortunately, in our experiments, we pretty quickly ran into a bug that seemed to be a deal-breaker until we were able to experiment our way [...]

Show Test Coverage in Xcode

There is CoverStory - an open source utility that can show you test coverage for your XCode unit tests. The problem is that CoverStory requires you to pick correct directory where object files and coverage metrics are stored. The directory could change from time to time. If you add this osascript as post test action [...]

Objective-C Gets Blocks!

New to Objective-C is the block syntax. A block is a section of code that is grouped together and designed to be treated like one statement. Blocks also package up the lexical scope of variables and functions within its environment. Blocks are found in many languages including, but not limited to, Ruby, Javascript and Lisp. [...]

WWDC Day One

Apples annual conference kicked off last week and Blazing Cloud wasn’t about to miss it’s chance to attend. Many exciting things happened like a preview of the 4th generation iPhone, a preview of developer tools and a look into safari improvements. The keynote also offered up some interesting statistics and new device capabilities of iPhone [...]

Test Driven Development for iPhone

UPDATE: Check out the project source code at: http://github.com/blazingcloud/iphone_logic_testing Here at Blazing Cloud we really like Test-Driven Development (TDD). We try to use it for all of our development projects, and we recently learned how to do it for IPhone development. The unit test tool available for Cocoa development is more like JUnit for Java [...]