<?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/"
	>

<channel>
	<title>Notes of a Developer &#187; NSDateFormatter</title>
	<atom:link href="http://www.developers-life.com/tag/nsdateformatter/feed" rel="self" type="application/rss+xml" />
	<link>http://www.developers-life.com</link>
	<description>Develop on Objective-C, UIKit, C, OpenGL for  iPhone, iPad, Mac OS X</description>
	<lastBuildDate>Fri, 03 Feb 2012 11:49:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>NSDateFormatter and UIFont</title>
		<link>http://www.developers-life.com/nsdateformatter-and-uifont.html</link>
		<comments>http://www.developers-life.com/nsdateformatter-and-uifont.html#comments</comments>
		<pubDate>Sun, 11 Oct 2009 16:26:36 +0000</pubDate>
		<dc:creator>Vladimir Boychentsov</dc:creator>
				<category><![CDATA[others]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[NSDateFormatter]]></category>
		<category><![CDATA[objective-c]]></category>
		<category><![CDATA[UIFont]]></category>

		<guid isPermaLink="false">http://www.developers-life.com/?p=560</guid>
		<description><![CDATA[Потерял свои закладки с этими данными. Для себя делаю заметку, но может кому то тоже понадобится. Format Character Description Example Return Values Day d Day of the month, 2 digits without leading zeros 1 through 31 dd Day of the month, 2 digits with leading zeros 01 through 31 D The day of the year [...]]]></description>
			<content:encoded><![CDATA[<p>Потерял свои закладки с этими данными. Для себя делаю заметку, но может кому то тоже понадобится.<br />
<span id="more-560"></span></p>
<div class="entry">
<table border="0" width="480">
<tbody>
<tr bgcolor="#516976">
<td><strong>Format Character</strong></td>
<td><strong>Description</strong></td>
<td><strong>Example Return Values</strong></td>
</tr>
<tr bgcolor="#698697">
<td colspan="3"><strong>Day</strong></td>
</tr>
<tr>
<td>d</td>
<td>Day of the month, 2 digits without leading zeros</td>
<td>1 through 31</td>
</tr>
<tr>
<td>dd</td>
<td>Day of the month, 2 digits with leading zeros</td>
<td>01 through 31</td>
</tr>
<tr>
<td>D</td>
<td>The day of the year</td>
<td>1 through 366</td>
</tr>
<tr>
<td>F</td>
<td>The day of the week in a month</td>
<td>1 through 5 (eg. 2nd Wed in July)</td>
</tr>
<tr>
<td>g</td>
<td>Julian day number (number of days since 4713 BC January 1)</td>
<td>Example: 2451334</td>
</tr>
<tr>
<td>G</td>
<td>Era designator abbreviated</td>
<td>Example: AD</td>
</tr>
<tr>
<td>GGGG</td>
<td>The full era designator name</td>
<td>Example: Anno Domini</td>
</tr>
<tr>
<td>GGGGG</td>
<td>A narrow textual representation of the era designator</td>
<td>Example: A</td>
</tr>
<tr bgcolor="#698697">
<td colspan="3"><strong>Day of the Week</strong></td>
</tr>
<tr>
<td>e</p>
<p>c</td>
<td>ISO-8601 numeric representation of the day of the week</td>
<td>1 (for Sunday) through 7 (for Saturday)</td>
</tr>
<tr>
<td>E</p>
<p>ccc</td>
<td>A textual representation of a day, three letters</td>
<td>Mon through Sun</td>
</tr>
<tr>
<td>EEEE</p>
<p>cccc</td>
<td>A full textual representation of the day of the week</td>
<td>Monday through Sunday</td>
</tr>
<tr>
<td>EEEEE</p>
<p>ccccc</td>
<td>A narrow textual representation of the day of the week</td>
<td>Monday through Sunday</td>
</tr>
<tr bgcolor="#698697">
<td colspan="3"><strong>Week</strong></td>
</tr>
<tr>
<td>w</td>
<td>ISO-8601 week number of year</td>
<td>1 through 52</td>
</tr>
<tr>
<td>W</td>
<td>ISO-8601 week number of month</td>
<td>1 through 4</td>
</tr>
<tr bgcolor="#698697">
<td colspan="3"><strong>Month</strong></td>
</tr>
<tr>
<td>M</p>
<p>L</td>
<td>Numeric representation of a month, without leading zeros</td>
<td>1 through 12</td>
</tr>
<tr>
<td>MM</p>
<p>LL</td>
<td>Numeric representation of a month, with leading zeros</td>
<td>01 through 12</td>
</tr>
<tr>
<td>MMM</p>
<p>LLL</td>
<td>A short textual representation of a month, three letters</td>
<td>Jan through Dec</td>
</tr>
<tr>
<td>MMMM</p>
<p>LLLL</td>
<td>A full textual representation of a month</td>
<td>January through December</td>
</tr>
<tr>
<td>MMMMM</p>
<p>LLLLL</td>
<td>A narrow textual representation of a month</td>
<td>Example: D</td>
</tr>
<tr bgcolor="#698697">
<td colspan="3"><strong>Year</strong></td>
</tr>
<tr>
<td>y</p>
<p>yyyy</td>
<td>A full numeric representation of a year, 4 digits</td>
<td>Example: 2009</td>
</tr>
<tr>
<td>yy</td>
<td>A two digit representation of a year</td>
<td>Example: 09</td>
</tr>
<tr>
<td>Y</p>
<p>YYYY</td>
<td>A full numeric representation of a ISO year, 4 digits</td>
<td>Example: 2009</td>
</tr>
<tr>
<td>YY</td>
<td>A two digit representation of a ISO year</td>
<td>Example: 09</td>
</tr>
<tr bgcolor="#698697">
<td colspan="3"><strong>Time</strong></td>
</tr>
<tr>
<td>a</td>
<td>Lowercase Ante meridiem and Post meridiem</td>
<td>AM or PM</td>
</tr>
<tr>
<td>h</p>
<p>K</td>
<td>12-hour format of an hour without leading zeros</td>
<td>1 through 12</td>
</tr>
<tr>
<td>hh</p>
<p>KK</td>
<td>12-hour format of an hour with leading zeros</td>
<td>01 through 12</td>
</tr>
<tr>
<td>H</p>
<p>k</td>
<td>24-hour format of an hour without leading zeros</td>
<td>0 through 23</td>
</tr>
<tr>
<td>HH</p>
<p>kk</td>
<td>24-hour format of an hour with leading zeros</td>
<td>00 through 23</td>
</tr>
<tr>
<td>m</td>
<td>Minutes without leading zeros</td>
<td>0 through 59</td>
</tr>
<tr>
<td>mm</td>
<td>Minutes with leading zeros</td>
<td>00 through 59</td>
</tr>
<tr>
<td>s</td>
<td>Seconds without leading zeros</td>
<td>0 through 59</td>
</tr>
<tr>
<td>ss</td>
<td>Seconds with leading zeros</td>
<td>00 to 59</td>
</tr>
<tr>
<td>A</td>
<td>Milliseconds in day</td>
<td>Example: 69540000</td>
</tr>
<tr bgcolor="#698697">
<td colspan="3"><strong>Timezone</strong></td>
</tr>
<tr>
<td>zzzz</td>
<td>A full textual representation of GMT timezone</td>
<td>Example: Central European Time</td>
</tr>
<tr>
<td>Z</td>
<td>Difference to Greenwich time (GMT) in hours in RFC 822 format</td>
<td>Example: +0200</td>
</tr>
<tr>
<td>ZZZZ</td>
<td>Difference to Greenwich time (GMT) in hours in GMT format</td>
<td>Example: GMT+02:00</td>
</tr>
</tbody>
</table>
</div>
<p><noindex><br />
<a href="http://www.monotypeimaging.com/assets/PDFs/MTIiPhoneFontSet.pdf" target="_blank">UIFont&#8217;s</a></noindex> :</p>
<p>Family name: Hiragino Kaku Gothic ProN W3<br />
    Font name: HiraKakuProN-W3<br />
Family name: Courier<br />
    Font name: Courier<br />
    Font name: Courier-BoldOblique<br />
    Font name: Courier-Oblique<br />
    Font name: Courier-Bold<br />
Family name: Arial<br />
    Font name: ArialMT<br />
    Font name: Arial-BoldMT<br />
    Font name: Arial-BoldItalicMT<br />
    Font name: Arial-ItalicMT<br />
Family name: STHeiti TC<br />
    Font name: STHeitiTC-Light<br />
    Font name: STHeitiTC-Medium<br />
Family name: AppleGothic<br />
    Font name: AppleGothic<br />
Family name: Courier New<br />
    Font name: CourierNewPS-BoldMT<br />
    Font name: CourierNewPS-ItalicMT<br />
    Font name: CourierNewPS-BoldItalicMT<br />
    Font name: CourierNewPSMT<br />
Family name: Zapfino<br />
    Font name: Zapfino<br />
Family name: Hiragino Kaku Gothic ProN W6<br />
    Font name: HiraKakuProN-W6<br />
Family name: Arial Unicode MS<br />
    Font name: ArialUnicodeMS<br />
Family name: STHeiti SC<br />
    Font name: STHeitiSC-Medium<br />
    Font name: STHeitiSC-Light<br />
Family name: American Typewriter<br />
    Font name: AmericanTypewriter<br />
    Font name: AmericanTypewriter-Bold<br />
Family name: Helvetica<br />
    Font name: Helvetica-Oblique<br />
    Font name: Helvetica-BoldOblique<br />
    Font name: Helvetica<br />
    Font name: Helvetica-Bold<br />
Family name: Marker Felt<br />
    Font name: MarkerFelt-Thin<br />
Family name: Helvetica Neue<br />
    Font name: HelveticaNeue<br />
    Font name: HelveticaNeue-Bold<br />
Family name: DB LCD Temp<br />
    Font name: DBLCDTempBlack<br />
Family name: Verdana<br />
    Font name: Verdana-Bold<br />
    Font name: Verdana-BoldItalic<br />
    Font name: Verdana<br />
    Font name: Verdana-Italic<br />
Family name: Times New Roman<br />
    Font name: TimesNewRomanPSMT<br />
    Font name: TimesNewRomanPS-BoldMT<br />
    Font name: TimesNewRomanPS-BoldItalicMT<br />
    Font name: TimesNewRomanPS-ItalicMT<br />
Family name: Georgia<br />
    Font name: Georgia-Bold<br />
    Font name: Georgia<br />
    Font name: Georgia-BoldItalic<br />
    Font name: Georgia-Italic<br />
Family name: STHeiti J<br />
    Font name: STHeitiJ-Medium<br />
    Font name: STHeitiJ-Light<br />
Family name: Arial Rounded MT Bold<br />
    Font name: ArialRoundedMTBold<br />
Family name: Trebuchet MS<br />
    Font name: TrebuchetMS-Italic<br />
    Font name: TrebuchetMS<br />
    Font name: Trebuchet-BoldItalic<br />
    Font name: TrebuchetMS-Bold<br />
Family name: STHeiti K<br />
    Font name: STHeitiK-Medium<br />
    Font name: STHeitiK-Light</p>
]]></content:encoded>
			<wfw:commentRss>http://www.developers-life.com/nsdateformatter-and-uifont.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

