<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>MacPandit</title>
	<atom:link href="http://panditpakhurde.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://panditpakhurde.wordpress.com</link>
	<description>The secret of success is making your vocation your vacation</description>
	<lastBuildDate>Wed, 15 Apr 2009 21:45:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='panditpakhurde.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>MacPandit</title>
		<link>http://panditpakhurde.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://panditpakhurde.wordpress.com/osd.xml" title="MacPandit" />
	<atom:link rel='hub' href='http://panditpakhurde.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Posting data to url in Objective-C</title>
		<link>http://panditpakhurde.wordpress.com/2009/04/16/posting-data-to-url-in-objective-c/</link>
		<comments>http://panditpakhurde.wordpress.com/2009/04/16/posting-data-to-url-in-objective-c/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 21:44:35 +0000</pubDate>
		<dc:creator>Pandit</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://panditpakhurde.wordpress.com/?p=61</guid>
		<description><![CDATA[Here, I am leaving some important notes that you can use in your code for sending data for login page link or a particular forum link using objective C. Also you can use this for posting comments or posting posts to a particular forum or url link. I am mentioning all the relative apis with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=panditpakhurde.wordpress.com&amp;blog=6489324&amp;post=61&amp;subd=panditpakhurde&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><font size="2" face="sans-serif"><br />
Here, I am leaving some important notes that you can use in your code for sending data for login page link or a particular forum link using objective C. Also you can use this for posting comments or posting posts to a particular forum or url link.</p>
<p>I am mentioning all the relative apis with the dummy urls for your understanding the whole procedure. Follow the points as per mentioned below</font><br />
<font size="2" face="sans-serif"><br />
For sake of understanding , take an example of sending username and password to your login page. To do this follow the following steps.<br />
<b><br />
1. set post string with actual username and password.</b><br />
</font><font size="2" face="sans-serif" color="#87CEFA"><b><br />
NSString *post = [NSString stringWithFormat:@"&amp;Username=%@&amp;Password=%@",@"username",@"password"];</b><br />
</font><font size="2" face="sans-serif"><b><br />
2. Encode the post string using NSASCIIStringEncoding and also the post string you need to send in NSData format.</b><br />
</font><font size="2" face="sans-serif" color="#87CEFA"><b><br />
NSData *postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];</b><br />
</font><font size="2" face="sans-serif"><b><br />
You need to send the actual length of your data. Calculate the length of the post string.</b><br />
</font><font size="2" face="sans-serif" color="#87CEFA"><b><br />
NSString *postLength = [NSString stringWithFormat:@"%d",[postData length]];</b></font><br />
<font size="2" face="sans-serif"><b><br />
3. Create a Urlrequest with all the properties like HTTP method, http header field with length of the post string.<br />
Create URLRequest object and initialize it.</b><br />
</font><font size="2" face="sans-serif" color="#87CEFA"><b><br />
NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];</b><br />
</font><font size="2" face="sans-serif"><b><br />
Set the Url for which your going to send the data to that request.</b><br />
</font><font size="2" face="sans-serif" color="#87CEFA"><b><br />
[request setURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://www.abcde.com/xyz/login.aspx"]]];</b><br />
</font><font size="2" face="sans-serif"><b><br />
Now, set HTTP method (POST or GET).<br />
 Write this lines as it is in your code.</b><br />
</font><font size="2" face="sans-serif" color="#87CEFA"><b><br />
[request setHTTPMethod:@"POST"];</b><br />
</font><font size="2" face="sans-serif"><b><br />
Set HTTP header field with length of the post data.</b><br />
</font><font size="2" face="sans-serif" color="#87CEFA"><b><br />
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];</b><br />
</font><font size="2" face="sans-serif"><b><br />
Also set the Encoded value for HTTP header Field.</b><br />
</font><font size="2" face="sans-serif" color="#87CEFA"><b><br />
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Current-Type"];</b><br />
</font><font size="2" face="sans-serif"><b><br />
Set the HTTPBody of the urlrequest with postData.</b><br />
</font><font size="2" face="sans-serif" color="#87CEFA"><b><br />
[request setHTTPBody:postData];</b><br />
</font><font size="2" face="sans-serif"><b><br />
4. Now, create URLConnection object. Initialize it with the URLRequest.</b><br />
</font><font size="2" face="sans-serif" color="#87CEFA"><b><br />
NSURLConnection *conn = [[NSURLConnection alloc]initWithRequest:request delegate:self];</b><br />
</font><font size="2" face="sans-serif"><b><br />
It returns the initialized url connection and begins to load the data for the url request. You can check that whether you URL connection is done properly or not using just if/else statement as below.</b><br />
</font><font size="2" face="sans-serif" color="#87CEFA"><b><br />
	if(conn)<br />
	{<br />
		NSLog(@&#8221;Connection Successful&#8221;)<br />
	}<br />
	else<br />
	{<br />
		NSLog(@&#8221;Connection could not be made&#8221;);<br />
	}</b><br />
</font><font size="2" face="sans-serif"><b><br />
5. To receive the data from the HTTP request , you can use the delegate methods provided by the URLConnection Class Reference. Delegate methods are as below.</b><br />
</font><font size="2" face="sans-serif" color="#87CEFA"><b><br />
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData*)data</b><br />
</font><font size="2" face="sans-serif"><b><br />
Above method is used to receive the data which we get using post method.</b><br />
</font><font size="2" face="sans-serif" color="#87CEFA"><b><br />
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error</b><br />
</font><font size="2" face="sans-serif"><b><br />
This method , you can use to receive the error report in case of connection is not made to server.</b><br />
</font><font size="2" face="sans-serif" color="#87CEFA"><b><br />
- (void)connectionDidFinishLoading:(NSURLConnection *)connection</b><br />
</font><font size="2" face="sans-serif"><b><br />
The above method is used to process the data after connection has made successfully. </b><br />
</font><br />
<font size="2" face="sans-serif"><b><br />
Have a Happy Coding !</b><br />
</font></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/panditpakhurde.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/panditpakhurde.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/panditpakhurde.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/panditpakhurde.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/panditpakhurde.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/panditpakhurde.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/panditpakhurde.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/panditpakhurde.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/panditpakhurde.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/panditpakhurde.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/panditpakhurde.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/panditpakhurde.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/panditpakhurde.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/panditpakhurde.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=panditpakhurde.wordpress.com&amp;blog=6489324&amp;post=61&amp;subd=panditpakhurde&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://panditpakhurde.wordpress.com/2009/04/16/posting-data-to-url-in-objective-c/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Pandit</media:title>
		</media:content>
	</item>
		<item>
		<title>Apple Push Notification Service is available in SDK 3.0</title>
		<link>http://panditpakhurde.wordpress.com/2009/04/12/apple-push-notification-service-is-available-in-sdk-30/</link>
		<comments>http://panditpakhurde.wordpress.com/2009/04/12/apple-push-notification-service-is-available-in-sdk-30/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 13:54:21 +0000</pubDate>
		<dc:creator>Pandit</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://panditpakhurde.wordpress.com/?p=55</guid>
		<description><![CDATA[The apple push notification service is now available in SDK 3.0 . iPHone Dev Centre announced in SDK 3.0 beta version that this sevice is available now in OS 3.0 . It provides a way to alert your users of new information, even when your application is not actively running. You can push text notifications, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=panditpakhurde.wordpress.com&amp;blog=6489324&amp;post=55&amp;subd=panditpakhurde&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><font size="2" face="Verdana"><br />
The apple push notification service is now available in SDK 3.0 . iPHone Dev Centre announced in SDK 3.0 beta version that this sevice is available now in OS 3.0 . </p>
<p>It provides a way to alert your users of new information, even when your application is not actively running. You can push text notifications, trigger audible alerts or add a numbered badge to your application icon like Mail application. These messages helps users to know that they should open your application to receive the related information.</p>
<p>To make push notification work for your application , you need to work on two parts as follow.</p>
<p>1) You need to request the delivery of notifications to your iPhone application and then you need to configure your application delegate to process them. The delegate works together with the shared UIApplication object to perform both of these tasks.</p>
<p>2) You need to provide a server-side process to generate the notifications in the first place. This process lives on your own local server and works with Apple Push Notification service to trigger the notification.<br />
</font></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/panditpakhurde.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/panditpakhurde.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/panditpakhurde.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/panditpakhurde.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/panditpakhurde.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/panditpakhurde.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/panditpakhurde.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/panditpakhurde.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/panditpakhurde.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/panditpakhurde.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/panditpakhurde.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/panditpakhurde.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/panditpakhurde.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/panditpakhurde.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=panditpakhurde.wordpress.com&amp;blog=6489324&amp;post=55&amp;subd=panditpakhurde&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://panditpakhurde.wordpress.com/2009/04/12/apple-push-notification-service-is-available-in-sdk-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Pandit</media:title>
		</media:content>
	</item>
		<item>
		<title>Easy to create peer-to-peer connection in game apps</title>
		<link>http://panditpakhurde.wordpress.com/2009/04/12/easy-to-create-peer-to-peer-connection-in-game-apps/</link>
		<comments>http://panditpakhurde.wordpress.com/2009/04/12/easy-to-create-peer-to-peer-connection-in-game-apps/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 13:16:07 +0000</pubDate>
		<dc:creator>Pandit</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://panditpakhurde.wordpress.com/?p=51</guid>
		<description><![CDATA[The Game kit framework provides peer-to-peer network capabilities to your application. This framework provide support for peer-to-peer connectivity and in-game voice feature. The main advantage is you can incorporate them into non-game applications as well. This framework is also useful for adding networking features in to our application.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=panditpakhurde.wordpress.com&amp;blog=6489324&amp;post=51&amp;subd=panditpakhurde&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><font size="2" face="Verdana"><br />
The Game kit framework provides peer-to-peer network capabilities to your application. This framework provide support for peer-to-peer connectivity and in-game voice feature. </p>
<p>The main advantage is you can incorporate them into non-game applications as well. This framework is also useful for adding networking features in to our application.</p>
<p></font></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/panditpakhurde.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/panditpakhurde.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/panditpakhurde.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/panditpakhurde.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/panditpakhurde.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/panditpakhurde.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/panditpakhurde.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/panditpakhurde.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/panditpakhurde.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/panditpakhurde.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/panditpakhurde.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/panditpakhurde.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/panditpakhurde.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/panditpakhurde.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=panditpakhurde.wordpress.com&amp;blog=6489324&amp;post=51&amp;subd=panditpakhurde&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://panditpakhurde.wordpress.com/2009/04/12/easy-to-create-peer-to-peer-connection-in-game-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Pandit</media:title>
		</media:content>
	</item>
		<item>
		<title>Map Kit framework is introduced in OS 3.0</title>
		<link>http://panditpakhurde.wordpress.com/2009/04/12/map-kit-framework-is-introduced-in-os-30/</link>
		<comments>http://panditpakhurde.wordpress.com/2009/04/12/map-kit-framework-is-introduced-in-os-30/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 13:09:02 +0000</pubDate>
		<dc:creator>Pandit</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://panditpakhurde.wordpress.com/?p=48</guid>
		<description><![CDATA[The Map kit framework provides a map interface that you can embed into your own application. This interface provides a scrollable map view that can be annotated with custom information. You can embed this map view into your own application views and programmatically set various attributes of the map, including the currently displayed map region [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=panditpakhurde.wordpress.com&amp;blog=6489324&amp;post=48&amp;subd=panditpakhurde&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><font size="2" face="Verdana"><br />
The Map kit framework provides a map interface that you can embed into your own application. This interface provides a scrollable map view that can be annotated with custom information.</p>
<p>You can embed this map view into your own application views and programmatically set various attributes of the map, including the currently displayed map region and the user&#8217;s location. </p>
<p>You can also define custom annotations or use standard annotations to highlight regions of the map and display additional information.</p>
<p></font></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/panditpakhurde.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/panditpakhurde.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/panditpakhurde.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/panditpakhurde.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/panditpakhurde.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/panditpakhurde.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/panditpakhurde.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/panditpakhurde.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/panditpakhurde.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/panditpakhurde.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/panditpakhurde.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/panditpakhurde.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/panditpakhurde.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/panditpakhurde.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=panditpakhurde.wordpress.com&amp;blog=6489324&amp;post=48&amp;subd=panditpakhurde&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://panditpakhurde.wordpress.com/2009/04/12/map-kit-framework-is-introduced-in-os-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Pandit</media:title>
		</media:content>
	</item>
		<item>
		<title>Now, You can access iPod Library!</title>
		<link>http://panditpakhurde.wordpress.com/2009/04/12/gamekit-framework-introduction/</link>
		<comments>http://panditpakhurde.wordpress.com/2009/04/12/gamekit-framework-introduction/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 12:40:24 +0000</pubDate>
		<dc:creator>Pandit</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://panditpakhurde.wordpress.com/?p=36</guid>
		<description><![CDATA[As per the new documentation of iPhone Dev center, now you can access the ipod library.several new classes and protocols have been added to the media player framework. It allow us to access the user&#8217;s audio library.You can use this classes to perform below tasks. * Play audio items from the user’s library. * You [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=panditpakhurde.wordpress.com&amp;blog=6489324&amp;post=36&amp;subd=panditpakhurde&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><font size="2" face="Verdana"><br />
As per the new documentation of iPhone Dev center, now you can access<br />
the ipod library.several new classes and protocols have been added<br />
to the media player framework.</p>
<p>It allow us to access the user&#8217;s audio library.You can use this classes<br />
to perform below tasks.</p>
<p>* Play audio items from the user’s library.<br />
* You can create queues of audio items to play back.<br />
* YOu can perfom search operation on the user&#8217;s audio library.<br />
* Also you can user&#8217;s playlists like smart playlist, on-the-go abd genius playlist.<br />
</font></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/panditpakhurde.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/panditpakhurde.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/panditpakhurde.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/panditpakhurde.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/panditpakhurde.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/panditpakhurde.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/panditpakhurde.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/panditpakhurde.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/panditpakhurde.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/panditpakhurde.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/panditpakhurde.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/panditpakhurde.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/panditpakhurde.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/panditpakhurde.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=panditpakhurde.wordpress.com&amp;blog=6489324&amp;post=36&amp;subd=panditpakhurde&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://panditpakhurde.wordpress.com/2009/04/12/gamekit-framework-introduction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Pandit</media:title>
		</media:content>
	</item>
		<item>
		<title>iPhone SDK 3.0 support Cut, Copy and Paste feature.</title>
		<link>http://panditpakhurde.wordpress.com/2009/04/12/iphone-sdk-30-support-cut-copy-and-paste-feature/</link>
		<comments>http://panditpakhurde.wordpress.com/2009/04/12/iphone-sdk-30-support-cut-copy-and-paste-feature/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 12:17:13 +0000</pubDate>
		<dc:creator>Pandit</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://panditpakhurde.wordpress.com/?p=31</guid>
		<description><![CDATA[In iPhone OS 3.0, the UIKit framework provides new classes to support pasteboard operations and also incorporates selection and pasteboard behaviors into some existing UIKit views. You can use the new classes to incorporate support cut, copy, and paste behaviors into your application. One of the key new classes is the UIPasteboard class, which manages [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=panditpakhurde.wordpress.com&amp;blog=6489324&amp;post=31&amp;subd=panditpakhurde&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><font size="2" face="Verdana"><br />
In iPhone OS 3.0, the UIKit framework provides new classes to support pasteboard operations and also incorporates selection and pasteboard behaviors into some existing UIKit views. You can use the new classes to incorporate support cut, copy, and paste behaviors into your application. One of the key new classes is the UIPasteboard class, which manages the content on the systemwide pasteboards. It is through this class that you can now store selected content and transfer it within your application or to other applications.</p>
<p>The UIPasteboard object provides built-in support for storing standard data types such as strings, images, colors, and URLs. These types represent some of the most common data types and make it easier to exchange content between applications. However, you can also exchange content in custom data formats supported only by your application or in more standardized interchange formats.</p>
<p>Several existing UIKit views now provide automatic support for text selection and pasteboard operations. In particular, the UITextField, UITextView, and UIWebView classes automatically handle text selections and the display of an editing menu with the appropriate Cut, Copy, Paste, Select, and Select all commands.</p>
<p>For custom views, the UIKit framework also includes the UIMenuController class for managing the editing menu. You use this class, together with your application’s own custom selection behavior, to allow the user to cut, copy, paste, and select custom content. The menu displays standard commands to cut or copy the selected content or to paste new content based on the operations currently supported by your view.<br />
</font></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/panditpakhurde.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/panditpakhurde.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/panditpakhurde.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/panditpakhurde.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/panditpakhurde.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/panditpakhurde.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/panditpakhurde.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/panditpakhurde.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/panditpakhurde.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/panditpakhurde.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/panditpakhurde.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/panditpakhurde.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/panditpakhurde.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/panditpakhurde.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=panditpakhurde.wordpress.com&amp;blog=6489324&amp;post=31&amp;subd=panditpakhurde&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://panditpakhurde.wordpress.com/2009/04/12/iphone-sdk-30-support-cut-copy-and-paste-feature/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Pandit</media:title>
		</media:content>
	</item>
		<item>
		<title>iPhone OS 3.0 beta</title>
		<link>http://panditpakhurde.wordpress.com/2009/04/12/iphone-os-30-beta/</link>
		<comments>http://panditpakhurde.wordpress.com/2009/04/12/iphone-os-30-beta/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 10:17:37 +0000</pubDate>
		<dc:creator>Pandit</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://panditpakhurde.wordpress.com/?p=15</guid>
		<description><![CDATA[iPhone Dev Center introduced iPhone SDK 3.0 beta on last 31st March 2009. All the features that we were waiting for are now available in it. Key features are as follow: * Apple Push Notification Service. This will provides a way to alert your users of new information, even when your application is not actively [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=panditpakhurde.wordpress.com&amp;blog=6489324&amp;post=15&amp;subd=panditpakhurde&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><font size="3" face="Verdana"><br />
<strong>iPhone Dev Center introduced iPhone SDK 3.0 beta on last 31st March 2009. All the features that we were waiting for are now available in it. </strong><br />
</font><br />
<b>Key features are as follow:</b><br />
<font size="2" face="Verdana"><br />
* Apple Push Notification Service. This will provides a way to alert your users of new information, even when your application is not actively running.<br />
* Cut, copy and paste. Now you can include cut, copy and paste feature in UITextView, UITextField and UIWebview.<br />
* Accessory Support. ExternalAccessory.framework is included using that we can provides support for communicating with hardware accessories attached to an iPhone or iPod touch device.<br />
* In App Purchase Support. Storekit.framework is inclued to provides a means for you to make additional content and services available from within your iPhone applications.<br />
* Peer to Peer Support. Gamekit.framework is introduced to add peer to peer network in our application.<br />
* Map API. MapKit.framework is also added to provide map interface in our application.<br />
* Several new classes and protocols are added in MediaPlayer.framework using this we can access iPod library.<br />
* AVFoundatation.framework also includes some new classes and protocols for audio management.<br />
* CoreData framework is also having some cool feature that you will see in my next post.<br />
* Now MessageUI framework is made as public framework so that we can use it for email composing and queuing in user&#8217;s outbox.<br />
* Now iPhone OS 3.0 support for the playback of live video streamed over http. Streamed content can be played back on an iPhone OS–based device using the MPMoviePlayerController class.<br />
* Safari supports the audio and video HTML elements, which allow you to embed audio and video content into your web applications.</p>
<p></font></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/panditpakhurde.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/panditpakhurde.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/panditpakhurde.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/panditpakhurde.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/panditpakhurde.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/panditpakhurde.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/panditpakhurde.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/panditpakhurde.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/panditpakhurde.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/panditpakhurde.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/panditpakhurde.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/panditpakhurde.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/panditpakhurde.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/panditpakhurde.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=panditpakhurde.wordpress.com&amp;blog=6489324&amp;post=15&amp;subd=panditpakhurde&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://panditpakhurde.wordpress.com/2009/04/12/iphone-os-30-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Pandit</media:title>
		</media:content>
	</item>
		<item>
		<title>iPhone &#8211; Technical Specification</title>
		<link>http://panditpakhurde.wordpress.com/2009/03/09/iphone-technical-specification/</link>
		<comments>http://panditpakhurde.wordpress.com/2009/03/09/iphone-technical-specification/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 15:09:58 +0000</pubDate>
		<dc:creator>Pandit</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://panditpakhurde.wordpress.com/?p=3</guid>
		<description><![CDATA[Technical specification are as per the Official iPhone specification.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=panditpakhurde.wordpress.com&amp;blog=6489324&amp;post=3&amp;subd=panditpakhurde&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Technical Specification of iPhone 3G:</strong></p>
<p><strong>Size and weight</strong></p>
<p><span> </span>Height: 4.5 inches (115.5 mm)</p>
<p><span> </span>Width: 2.4 inches (62.1 mm)</p>
<p><span> </span>Depth: 0.48 inch (12.3 mm)</p>
<p><span> </span>Weight: 4.7 ounces (133 grams)</p>
<p><strong>Color</strong></p>
<ul>
<li>8GB model: Black</li>
<li>16GB model: Black or white</li>
</ul>
<p><strong>Capacity</strong></p>
<ul>
<li>8GB or 16GB flash drive</li>
</ul>
<p><strong>Cellular and wireless</strong></p>
<ul>
<li>UMTS/HSDPA (850, 1900, 2100 MHz)</li>
<li>GSM/EDGE (850, 900, 1800, 1900 MHz)</li>
<li>Wi-Fi (802.11b/g)</li>
<li>Bluetooth 2.0 + EDR</li>
</ul>
<p><strong>GPS</strong></p>
<ul>
<li>Assisted GPS<span>11</span></li>
</ul>
<p><strong>In the box</strong></p>
<ul>
<li>iPhone 3G</li>
<li>Stereo Headset with mic</li>
<li>Dock Connector to USB Cable</li>
<li>USB Power Adapter</li>
<li>Documentation</li>
<li>Cleaning/polishing cloth</li>
<li>SIM eject tool</li>
</ul>
<p><strong>Display</strong></p>
<ul>
<li>3.5-inch (diagonal) widescreen Multi-Touch display</li>
<li>480-by-320-pixel resolution at 163 ppi</li>
<li>Support for display of multiple languages and characters simultaneously</li>
</ul>
<p><strong>Audio</strong></p>
<ul>
<li>Frequency response: 20Hz to 20,000Hz</li>
<li>Audio formats supported: AAC, Protected AAC, MP3, MP3 VBR, Audible (formats 2, 3, and 4), Apple Lossless, AIFF, and WAV</li>
</ul>
<p><strong>Headphones</strong></p>
<ul>
<li>Stereo earphones with built-in microphone</li>
<li>Frequency response: 20Hz to 20,000Hz</li>
<li>Impedance: 32 ohms</li>
</ul>
<p><strong>Video</strong></p>
<ul>
<li>Video formats supported: H.264 video, up to 1.5 Mbps, 640 by 480 pixels, 30 frames per second, Low-Complexity version of the H.264 Baseline Profile with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; H.264 video, up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Baseline Profile up to Level 3.0 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; MPEG-4 video, up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats</li>
</ul>
<p><strong>Camera and photos</strong></p>
<ul>
<li>2.0 megapixels </li>
<li>Photo geotagging</li>
<li>iPhone and third-party application integration</li>
</ul>
<p><strong>Language support</strong></p>
<ul>
<li>Language support for English, French, German, Japanese, Dutch, Italian, Spanish, Portuguese, Danish, Finnish, Norwegian, Swedish, Korean, Simplified Chinese, Traditional Chinese, Russian, Polish, Turkish, and Ukrainian</li>
<li>International keyboard and dictionary support for English (U.S.), English (UK), French (France), French (Canada), German, Japanese, Dutch, Italian, Spanish, Portuguese (Portugal), Portuguese (Brazil), Danish, Finnish, Norwegian, Swedish, Korean (no dictionary), Simplified Chinese, Traditional Chinese, Russian, Polish, Turkish, and Ukrainian</li>
</ul>
<p><strong>Mail attachment support</strong></p>
<ul>
<li>Viewable document types: .jpg, .tiff, .gif (images); .doc and .docx (Microsoft Word); .htm and .html (web pages); .key (Keynote); .numbers (Numbers); .pages (Pages); .pdf (Preview and Adobe Acrobat); .ppt and .pptx (Microsoft PowerPoint); .txt (text); .vcf (contact information); .xls and .xlsx (Microsoft Excel)</li>
</ul>
<p><strong>Connectors and input/output</strong></p>
<ul>
<li>30-pin dock connector , 3.5-mm stereo headphone minijack , Built-in speaker , Microphone ,SIM card tray</li>
</ul>
<p><strong>External buttons and controls</strong></p>
<ul>
<li>Sleep/wake ,<span> </span>Ring/silent , Volume up/down , Home</li>
</ul>
<p><strong>Sensors</strong></p>
<ul>
<li>Accelerometer , Proximity sensor , Ambient light sensor.</li>
</ul>
<p><strong>Power and battery</strong></p>
<ul>
<li>Built-in rechargeable lithium-ion battery</li>
<li>Charging via USB to computer system or power adapter</li>
<li>Talk time:<span>4</span><br />
Up to 5 hours on 3G<br />
Up to 10 hours on 2G</li>
<li>Standby time: Up to 300 hours<span>5</span></li>
<li>Internet use:<br />
Up to 5 hours on 3G<span>6</span><br />
Up to 6 hours on Wi-Fi<span>7</span></li>
<li>Video playback: Up to 7 hours<span>8</span></li>
<li>Audio playback: Up to 24 hours<span>9</span></li>
</ul>
<p><strong>System requirements</strong></p>
<p><strong>Mac</strong>:</p>
<ul>
<li>Mac computer with USB 2.0 port</li>
<li>Mac OS X v10.4.10 or later</li>
<li>iTunes 7.7 or later</li>
</ul>
<p><strong>Windows</strong>:</p>
<ul>
<li>PC with USB 2.0 port</li>
<li>Windows Vista; or Windows XP Home or Professional with Service Pack 2 or later</li>
<li>iTunes 7.7 or later</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/panditpakhurde.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/panditpakhurde.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/panditpakhurde.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/panditpakhurde.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/panditpakhurde.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/panditpakhurde.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/panditpakhurde.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/panditpakhurde.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/panditpakhurde.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/panditpakhurde.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/panditpakhurde.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/panditpakhurde.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/panditpakhurde.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/panditpakhurde.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=panditpakhurde.wordpress.com&amp;blog=6489324&amp;post=3&amp;subd=panditpakhurde&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://panditpakhurde.wordpress.com/2009/03/09/iphone-technical-specification/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Pandit</media:title>
		</media:content>
	</item>
	</channel>
</rss>
