<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
	<channel>
		<title>gdp's Comments</title>
		<language>en-us</language>
		<link>https://www.intensedebate.com/users/646692</link>
		<description>Comments by anka_</description>
<item>
<title>Seaside : Your first iPad split view application</title>
<link>http://blog.blackwhale.at/2010/04/your-first-ipad-split-view-application/#IDComment299257227</link>
<description>Dear kmc,    do not use [window addSubview:] and [window makeKeyAndVisible]. Instead try this code:    self.window.rootViewController  = splitViewController;      IntroView *introViewController=[[[IntroView alloc] initWithNibName:@&amp;quot;IntroView&amp;quot; bundle:nil]autorelease];       [introViewController setModalPresentationStyle:UIModalPresentationFullScreen] ;       [splitViewController presentModalViewController:introViewController animated:NO];     Cheers,  anka </description>
<pubDate>Wed, 22 Feb 2012 21:47:45 +0000</pubDate>
<guid>http://blog.blackwhale.at/2010/04/your-first-ipad-split-view-application/#IDComment299257227</guid>
</item><item>
<title>Seaside : Objective C - HMAC-MD5</title>
<link>http://blog.blackwhale.at/?p=801#IDComment293496233</link>
<description>Hi, yes it is fully compatible to the corresponding php function. HMAC and MD5 algorithms stay the same all the time :).  Cheers, anka </description>
<pubDate>Wed, 15 Feb 2012 23:45:45 +0000</pubDate>
<guid>http://blog.blackwhale.at/?p=801#IDComment293496233</guid>
</item><item>
<title>Seaside : Show a custom popover view within your iPad App</title>
<link>http://blog.blackwhale.at/2010/04/show-a-custom-popover-view/#IDComment284511711</link>
<description>Dear Purna,  the view displayed within the popover is like any view fully customizable. To set a background image just add a UIImageView to your view and set the appropriate image.   Cheers, anka </description>
<pubDate>Sun, 5 Feb 2012 13:56:43 +0000</pubDate>
<guid>http://blog.blackwhale.at/2010/04/show-a-custom-popover-view/#IDComment284511711</guid>
</item><item>
<title>Seaside : Show a custom popover view within your iPad App</title>
<link>http://blog.blackwhale.at/2010/04/show-a-custom-popover-view/#IDComment171129929</link>
<description>Hi, I do not know why you would do something like this? If it is a popup which has nothing to do with some interaction of your user (like touching a button) then maybe you should use a fullscreen popover or you simply add another customizied UIView (i.e. with black transparent background) on top of your current view hierarchy. Cheers, anka </description>
<pubDate>Fri, 8 Jul 2011 14:55:11 +0000</pubDate>
<guid>http://blog.blackwhale.at/2010/04/show-a-custom-popover-view/#IDComment171129929</guid>
</item><item>
<title>Seaside : Add foursquare to your iphone app</title>
<link>http://blog.blackwhale.at/?p=639#IDComment152603417</link>
<description>Hi,    did you register your application for oAuth access on &lt;a href=&quot;http:\/\/foursquare.com\/oauth\/&quot; target=&quot;_blank&quot;&gt;http://foursquare.com/oauth/&lt;/a&gt; first? You&amp;#039;ll need to do this first and enter the key and secret to your property file as well.     Cheers,  anka </description>
<pubDate>Mon, 16 May 2011 12:04:48 +0000</pubDate>
<guid>http://blog.blackwhale.at/?p=639#IDComment152603417</guid>
</item><item>
<title>Seaside : Custom video/camera overlay view on the iPhone</title>
<link>http://blog.blackwhale.at/2009/10/custom-video-overlay-view-on-the-iphone/#IDComment144591259</link>
<description>Hi, you can try to use the global notification center for making your app listening to orientation changes. Try this code:  //put this code somewhere in your view controller for example     [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(deviceOrientationDidChange:) name:UIDeviceOrientationDidChangeNotification object:nil]; [[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];   //your method which gets called whenever a device orientation change was recognized - (void)deviceOrientationDidChange:(NSNotification *)notification { UIDeviceOrientation deviceOrienation = [[UIDevice currentDevice] orientation]; //go on here }   cheers, anka </description>
<pubDate>Wed, 20 Apr 2011 18:55:18 +0000</pubDate>
<guid>http://blog.blackwhale.at/2009/10/custom-video-overlay-view-on-the-iphone/#IDComment144591259</guid>
</item><item>
<title>Seaside : Add foursquare to your iphone app</title>
<link>http://blog.blackwhale.at/?p=639#IDComment144586489</link>
<description>Hi, basically you will need a valid callback url (which should be some kind of website of your application) but it doesn&amp;#039;t really matter because you will receive your access token within your iOS application.  cheers, anka </description>
<pubDate>Wed, 20 Apr 2011 18:33:42 +0000</pubDate>
<guid>http://blog.blackwhale.at/?p=639#IDComment144586489</guid>
</item><item>
<title>Seaside : Game: Stone Flood</title>
<link>http://blog.blackwhale.at/2011/01/game-stone-flood/#IDComment144258273</link>
<description>Hi Suzanne, on which plattform are you playing Stone Flood? iPhone, iPad, Android or Windows Phone? Regards, anka </description>
<pubDate>Tue, 19 Apr 2011 17:50:57 +0000</pubDate>
<guid>http://blog.blackwhale.at/2011/01/game-stone-flood/#IDComment144258273</guid>
</item><item>
<title>Seaside : iAd Integration</title>
<link>http://blog.blackwhale.at/2011/01/iad-integration/#IDComment141266790</link>
<description>So if you say &amp;quot;a lot of free and paid user&amp;quot; are you talking of two different applications or do you use InApp-Purchase to offer more functionality to your users?   If you are using two independent applications it shouldn&amp;#039;t be a problem to integrate iAd to your free version of your app and then you don&amp;#039;t have to touch the paid version.   If you are using InApp-Purchase you hopefully marked the purchase somewhere in the user&amp;#039;s settings (with NSUserDefaults) already. You can simply check the purchase then.   cheers, anka </description>
<pubDate>Sat, 9 Apr 2011 15:10:35 +0000</pubDate>
<guid>http://blog.blackwhale.at/2011/01/iad-integration/#IDComment141266790</guid>
</item><item>
<title>Seaside : Add foursquare to your iphone app</title>
<link>http://blog.blackwhale.at/?p=639#IDComment138915060</link>
<description>Hi, I don&amp;#039;t think that OAAttachement.h is the real problem. There must be another conflict with some framework or source files i think. Cheers, anka </description>
<pubDate>Thu, 31 Mar 2011 19:46:57 +0000</pubDate>
<guid>http://blog.blackwhale.at/?p=639#IDComment138915060</guid>
</item><item>
<title>Seaside : Add foursquare to your iphone app</title>
<link>http://blog.blackwhale.at/?p=639#IDComment138914091</link>
<description>Hi Chris, yes you need the JSON-framework but it is already included within the example project at the lib-folder. Just be sure that the lib folder and it subfolders are included at your XCode project. Also oauthconsumer is added as a submodule so you have to do a &amp;quot;git submodule update&amp;quot; at the project folder first. Also the Foundation, UIKit and CoreGraphics frameworks are necessary to compile the project. Cheers, anka  </description>
<pubDate>Thu, 31 Mar 2011 19:42:05 +0000</pubDate>
<guid>http://blog.blackwhale.at/?p=639#IDComment138914091</guid>
</item><item>
<title>Seaside : Create custom activity indicator for your iPhone App</title>
<link>http://blog.blackwhale.at/2009/09/create-custom-activity-indicator-for-your-iphone-app/#IDComment134595598</link>
<description>[activityImageView removeFromSuperview]   should do so, if activityImageView is accessible in your method where you finished the loading of something (or simply make  activityImageView a property of your class). </description>
<pubDate>Sun, 13 Mar 2011 10:42:14 +0000</pubDate>
<guid>http://blog.blackwhale.at/2009/09/create-custom-activity-indicator-for-your-iphone-app/#IDComment134595598</guid>
</item><item>
<title>Seaside : AdMob Integration</title>
<link>http://blog.blackwhale.at/2011/03/admob-integration/#IDComment133085401</link>
<description>Hi Kelvin, the @synchronized blocks aren&amp;#039;t that necessary, but I did another implementation where I used iAd and AdMob at the same time. Because both implementations get events outside the main thread it could be the case that these animation methods are called at the same time and I want to force a strict serial processing to not show two banners simultaneously.   Regards, anka </description>
<pubDate>Mon, 7 Mar 2011 09:54:04 +0000</pubDate>
<guid>http://blog.blackwhale.at/2011/03/admob-integration/#IDComment133085401</guid>
</item><item>
<title>Seaside : Add foursquare to your iphone app</title>
<link>http://blog.blackwhale.at/?p=639#IDComment133084442</link>
<description>Hi Chris, this comment isn&amp;#039;t very helpful. Please describe which errors you&amp;#039;ll receive within your Xcode project. Did you add all necessary frameworks and also the code within the lib folder (json + oauthconsumer)?  Regards, anka </description>
<pubDate>Mon, 7 Mar 2011 09:47:14 +0000</pubDate>
<guid>http://blog.blackwhale.at/?p=639#IDComment133084442</guid>
</item><item>
<title>Seaside : Transparent UIToolBar</title>
<link>http://blog.blackwhale.at/2010/07/transparent-uitoolbar/#IDComment130656486</link>
<description>Hi Martin,  if Xcode shows you the warning &amp;quot;...not respond to -setToolbarItems.&amp;quot; then you maybe forgot to extend you TransparentToolbar implementation from the UIToolbar super class.  For further help you can post your code on how you initialize your TransparentToolbar and maybe I can give you more advice.  Cheers, anka </description>
<pubDate>Fri, 25 Feb 2011 18:54:23 +0000</pubDate>
<guid>http://blog.blackwhale.at/2010/07/transparent-uitoolbar/#IDComment130656486</guid>
</item><item>
<title>Seaside : Show a custom popover view within your iPad App</title>
<link>http://blog.blackwhale.at/2010/04/show-a-custom-popover-view/#IDComment116371898</link>
<description>Hi,  for dismissing the popover view you need to ask your main view controller (thats the view controller which opened the popover) for that and call the method &amp;quot;dismissPopoverAnimated:&amp;quot; on the popover view controller instance. For doing this you can use the delegation pattern. You can call your delegation method and pass your selected row index or any other information you need within your &amp;quot;tableView:didDeselectRowAtIndexPath:&amp;quot; method. After that you can simply show your next view on your main view hierarchy.  cheers, anka </description>
<pubDate>Fri, 17 Dec 2010 08:22:35 +0000</pubDate>
<guid>http://blog.blackwhale.at/2010/04/show-a-custom-popover-view/#IDComment116371898</guid>
</item><item>
<title>Seaside : Show a custom popover view within your iPad App</title>
<link>http://blog.blackwhale.at/2010/04/show-a-custom-popover-view/#IDComment114116065</link>
<description>Hi Doug,  please check out my example at &lt;a href=&quot;https://github.com/anka/bw_examples/blob/master/PopoverView/Classes/MainViewController.m&quot; target=&quot;_blank&quot;&gt;https://github.com/anka/bw_examples/blob/master/P...&lt;/a&gt;   To find examples for using NIB files within your popover look at the methods: - (void) showPickerPopupAction:(id) sender - (void) showTablePopupAction:(id) sender  Regards, anka </description>
<pubDate>Mon, 6 Dec 2010 18:58:48 +0000</pubDate>
<guid>http://blog.blackwhale.at/2010/04/show-a-custom-popover-view/#IDComment114116065</guid>
</item><item>
<title>Seaside : Custom video/camera overlay view on the iPhone</title>
<link>http://blog.blackwhale.at/2009/10/custom-video-overlay-view-on-the-iphone/#IDComment114115067</link>
<description>Hi, no the overlay will not be captured. Before iOS 4.0 there was a undocumented method to capture the current screen but since you app will be rejected if you use such private methods this wouldn&amp;#039;t help you in any way.  A workaround is to capture the image and draw your current overlay with OpenGL methods at the captured image. If you overlay is a simple image you could use the following code:  + (UIImage*) imageByMergingImage:(UIImage*)image1 withImage:(UIImage*)image2 at:(CGPoint) point { UIGraphicsBeginImageContext(image1.size); [image1 drawAtPoint:CGPointMake(0,0)]; [image2 drawAtPoint:point];  UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext();  return newImage; }  To use this method you have to ensure that both images have the same size before merging.   Regards, anka </description>
<pubDate>Mon, 6 Dec 2010 18:52:20 +0000</pubDate>
<guid>http://blog.blackwhale.at/2009/10/custom-video-overlay-view-on-the-iphone/#IDComment114115067</guid>
</item><item>
<title>Seaside : A infinite/endless paging UIScrollView</title>
<link>http://blog.blackwhale.at/2010/07/a-infinite-endless-paging-uiscrollview/#IDComment112461907</link>
<description>Looks great! Thanks for sharing :) </description>
<pubDate>Sun, 28 Nov 2010 19:07:49 +0000</pubDate>
<guid>http://blog.blackwhale.at/2010/07/a-infinite-endless-paging-uiscrollview/#IDComment112461907</guid>
</item><item>
<title>Seaside : Set background image of UITableView</title>
<link>http://blog.blackwhale.at/2009/09/set-background-image-of-uitableview/#IDComment112461654</link>
<description>Thats true, but in my example I used a black background :) </description>
<pubDate>Sun, 28 Nov 2010 19:05:43 +0000</pubDate>
<guid>http://blog.blackwhale.at/2009/09/set-background-image-of-uitableview/#IDComment112461654</guid>
</item>	</channel>
</rss>