June 7th, 2013 by Anders Ohlsson
Upcoming cities:
David I will be in Denver and Seattle. I will be in Salt Lake City and Boston. Al Mannarino will be in Washington, DC.
See ya!
Share This | Email this page to a friend
Posted in C++Builder, C++Builder XE4, Delphi, Delphi XE2, Delphi XE3, Delphi XE4, FireMonkey, RAD Studio, RAD Studio XE2, RAD Studio XE3, RAD Studio XE4, ednfront, iOS, iPhone | No Comments »
June 6th, 2013 by Anders Ohlsson
Posted in CodeRage, Delphi, Delphi XE2, Delphi XE3, Delphi XE4, FireMonkey, RAD Studio, RAD Studio XE2, RAD Studio XE3, RAD Studio XE4, ednfront, iOS, iPhone | No Comments »
June 3rd, 2013 by Anders Ohlsson
As soon as the newest update gets approved, you can get rid of the ads…

Stay tuned to hear more about this topic…
Enjoy!
Share This | Email this page to a friend
Posted in Delphi, Delphi XE4, FireMonkey, RAD Studio, RAD Studio XE4, ednfront, iOS, iPhone | 6 Comments »
May 31st, 2013 by Anders Ohlsson
Less than 48 hours from submission to approval is spectacular!
I’m feeling like a kid in a candy story when I get new stuff into the AppStore!
Nothing like a little Candy Crush Saga while watching the time fly away as you develope super cool FireMonkey apps for iOS using Delphi XE4!

Anders’ Analog Clock with iAds
/Enjoy!
Share This | Email this page to a friend
Posted in Delphi, Delphi XE4, FireMonkey, RAD Studio, RAD Studio XE4, ednfront, iOS, iPhone | 15 Comments »
May 29th, 2013 by Anders Ohlsson
Simon Choi has a beta version of his iAd wrapper for Delphi XE4 for iOS.
Very cool. I decided to take it for a spin, and it works in development mode on my device.
As a final test, I submitted an update of my Analog Clock app. If you’re one of 1,900 people who have tried it, you should see the update (if approved) soon.

Share This | Email this page to a friend
Posted in Delphi, Delphi XE4, FireMonkey, RAD Studio, RAD Studio XE4, iOS, iPhone | 1 Comment »
May 24th, 2013 by Anders Ohlsson
JT just blogged that we have partnered with MacInCloud. This is fantastic news for anyone that wants to play with the trial, but don’t have a Mac to deploy to.
JT’s post - read for details.
Enjoy!
Share This | Email this page to a friend
Posted in C++Builder, C++Builder XE4, Delphi, Delphi XE4, FireMonkey, RAD Studio, RAD Studio XE4, ednfront, iOS, iPhone | No Comments »
May 24th, 2013 by Anders Ohlsson
A little bit of clarification on my APNS blog post(s) comment threads…
Deployment tab - notice IDE maintained file UNCHECKED - your file - CHECKED - remote name - Entitlements.plist:

Provisioning tab (specify the first two, hit Load ID):

Version Info tab:

Anders.entitlements file:
<?xml version="1.0" encoding="UTF-8"?>
<plist version="1.0">
<dict>
<key>application-identifier</key>
<string>XZ9AC2Q82Q.com.AndersOhlsson.FMX.01</string>
<key>aps-environment</key>
<string>development</string>
<key>get-task-allow</key>
<true/>
</dict>
</plist>
Enjoy!
Share This | Email this page to a friend
Posted in Delphi, Delphi XE4, FireMonkey, RAD Studio, RAD Studio XE4, iOS, iPhone | 1 Comment »
May 15th, 2013 by Anders Ohlsson
Posted in C++Builder, C++Builder XE3, C++Builder XE4, CodeRage, DataRage, Delphi, Delphi Prism, Delphi XE2, Delphi XE3, Delphi XE4, ERStudio, FireMonkey, RAD Studio, RAD Studio XE2, RAD Studio XE4, ednfront, iOS, iPhone | No Comments »
May 15th, 2013 by Anders Ohlsson
There’s currently an issue with TWebBrowser in that it doesn’t allow for zooming. Luckily it’s fairly easy to fix.
I suggest that you make a copy of FMX.WebBrowser.iOS.pas and put it in the same directory as your project. You then add it to your project. This way it will be picked up automagically.
Now for the hardest part…
Make the following change in FMX.WebBrowser.iOS.pas (your copy).
constructor TiOSWebBrowserService.Create;
begin
FWebView := TUIWebView.Create;
FWebView.setScalesPageToFit(true); // Add this line of code
FDelegate := TiOSWebViewDelegate.Create;
FDelegate.SetWebBrowser(Self);
FWebView.setDelegate(FDelegate.GetObjectID);
end;
Thanks Sarina for the tip!
Share This | Email this page to a friend
Posted in Delphi, Delphi XE4, FireMonkey, RAD Studio XE4, iOS, iPhone | 4 Comments »