<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/hotmilk005/">
    <title>Interface Builderを使わないMac専門</title>
    <link>http://w.atwiki.jp/hotmilk005/</link>
    <atom:link href="https://w.atwiki.jp/hotmilk005/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>Interface Builderを使わないMac専門</description>

    <dc:language>ja</dc:language>
    <dc:date>2012-09-20T04:00:05+09:00</dc:date>
    <utime>1348081205</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/hotmilk005/pages/35.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/hotmilk005/pages/34.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/hotmilk005/pages/33.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/hotmilk005/pages/32.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/hotmilk005/pages/31.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/hotmilk005/pages/30.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/hotmilk005/pages/29.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/hotmilk005/pages/28.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/hotmilk005/pages/27.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/hotmilk005/pages/26.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/hotmilk005/pages/35.html">
    <title>ttt</title>
    <link>https://w.atwiki.jp/hotmilk005/pages/35.html</link>
    <description>
      
&lt;table border=&quot;1&quot;&gt;&lt;tr&gt;&lt;td&gt;テーブル&lt;/td&gt;
&lt;/tr&gt;&lt;/table&gt;    </description>
    <dc:date>2012-09-20T04:00:05+09:00</dc:date>
    <utime>1348081205</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/hotmilk005/pages/34.html">
    <title>NSColorWell</title>
    <link>https://w.atwiki.jp/hotmilk005/pages/34.html</link>
    <description>
      &amp;color(green){クラス変成}
|BGCOLOR(yellow):NSObject|
|CENTER:↓|
|BGCOLOR(yellow):NSResponder|
|CENTER:↓|
|BGCOLOR(yellow):NSView|
|CENTER:↓|
|BGCOLOR(yellow):NSControl|
&amp;color(green){色を管理するクラス}
    NSColorWell *colorWell=[[NSColorWell alloc]init];
    colorWell.frame=CGRectMake(100,100,200,200);
    colorWell.color=[NSColor brownColor];
    [colorWell setBordered:YES];
    [colorWell activate:NO];
    [self.window.contentView addSubview:colorWell];
&amp;ref(colorWell001.png)
|プロパティ名|プロパティの効果|
|isActive||
|color|色の取得|
|isBordered|アウトラインの有無|

|メソッド名|メソッドの効果|
|- (void)activate:(BOOL)exclusive|選択した色と表示した色を同じにする|
|- (void)setColor:(NSColor *)color|色をセットする|
|- (void)setBordered:(BOOL)bordered|アウトラインの有無|    </description>
    <dc:date>2012-09-09T22:27:02+09:00</dc:date>
    <utime>1347197222</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/hotmilk005/pages/33.html">
    <title>NSCollectionView</title>
    <link>https://w.atwiki.jp/hotmilk005/pages/33.html</link>
    <description>
      &amp;color(green){クラス変成}
|BGCOLOR(yellow):NSObject|
|CENTER:↓|
|BGCOLOR(yellow):NSResponder|
|CENTER:↓|
|BGCOLOR(yellow):NSView|

&amp;color(green){ボタンを管理するクラス}
    [[NSButton]] *button=[[NSButton alloc]initWithFrame:CGRectMake(100,100,100,100)];
    button.bezelStyle=4;
    button.title=@&quot;ぼたん&quot;;
    button.action=@selector(actionA);
    [self.window.contentView addSubview:button];

&amp;color(green){ボタンのベゼルスタイル&lt;.bezelStyle&gt;}
|NSSmallIconButtonBezelStyle  = 2|&amp;ref(bezelStyle001.png)|
|NSInlineBezelStyle = 15,|~|
|NSRoundedDisclosureBezelStyle = 14,|~|
|NSRecessedBezelStyle          = 13,|~|
|NSRoundRectBezelStyle         = 12,|~|
|NSTexturedRoundedBezelStyle   = 11,|~|
|NSSmallSquareBezelStyle       = 10,|~|
|NSHelpButtonBezelStyle        = 9,|~|
|NSTexturedSquareBezelStyle    = 8,|~|
|NSCircularBezelStyle          = 7,|~|
|NSShadowlessSquareBezelStyle  = 6,|~|
|NSDisclosureBezelStyle        = 5,|~|
|NSThickerSquareBezelStyle     = 4,|~|
|NSThickSquareBezelStyle       =     </description>
    <dc:date>2012-09-09T20:40:19+09:00</dc:date>
    <utime>1347190819</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/hotmilk005/pages/32.html">
    <title>NSScrollView</title>
    <link>https://w.atwiki.jp/hotmilk005/pages/32.html</link>
    <description>
      &amp;color(green){クラス変成}
|BGCOLOR(yellow):NSObject|
|CENTER:↓|
|BGCOLOR(yellow):NSResponder|
|CENTER:↓|
|BGCOLOR(yellow):NSView|
&amp;color(green){ビューのスクロールさせます}
    NSTextView *textView=[[NSTextView alloc]init];
    textView.frame=CGRectMake(0, 0, 200, 1000);
    textView.string=@&quot;1\n2\n3\n4\n5\n6\n7\n8\n9&quot;;
    
    
    NSScrollView *scrollView = [[NSScrollView alloc] init];
    scrollView.frame=CGRectMake(100, 100, 100, 100);
    [scrollView setBorderType:NSBezelBorder];
    [scrollView setHasVerticalScroller:YES];
    [scrollView setHasHorizontalScroller:YES];
    [scrollView setDocumentView:textView];
    [self.window.contentView addSubview:scrollView];
&amp;ref(scrollView001.png)
&amp;color(green){テーブルビューinスクロールビュー}
    [[NSTableView]] *tcv=[[NSTableView alloc]initWithFrame:CGRectMake(0, 0, 300, 100)];
    NSTableColumn *coll_1=[[NSTableColumn alloc]initWithIdentifier:@&quot;coll_1&quot;];
    NSTableColumn *coll_2=[[NSTableColumn alloc]initWithIdentifier:@&quot;coll_2&quot;];
    [tcv addT    </description>
    <dc:date>2012-09-09T19:27:39+09:00</dc:date>
    <utime>1347186459</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/hotmilk005/pages/31.html">
    <title>NSDatePicker</title>
    <link>https://w.atwiki.jp/hotmilk005/pages/31.html</link>
    <description>
      &amp;color(green){クラス変成}
|BGCOLOR(yellow):NSObject|
|CENTER:↓|
|BGCOLOR(yellow):NSResponder|
|CENTER:↓|
|BGCOLOR(yellow):NSView|
|CENTER:↓|
|BGCOLOR(yellow):NSControl|
&amp;color(green){時刻（NSDate）を表示するクラスです}
&amp;color(green){現在の時刻を表示}
    NSDate *d=[NSDate date];
    
    NSDatePicker *dp=[[NSDatePicker alloc]init];
    dp.frame=CGRectMake(100, 100, 100, 100);
    [dp setDateValue:d];
    [self.window.contentView addSubview:dp];

&amp;ref(datePicker001.png)    </description>
    <dc:date>2012-09-05T14:34:25+09:00</dc:date>
    <utime>1346823265</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/hotmilk005/pages/30.html">
    <title>NSSecureTextField</title>
    <link>https://w.atwiki.jp/hotmilk005/pages/30.html</link>
    <description>
      &amp;color(green){クラス変成}
|BGCOLOR(yellow):NSObject|
|CENTER:↓|
|BGCOLOR(yellow):NSResponder|
|CENTER:↓|
|BGCOLOR(yellow):NSView|
|CENTER:↓|
|BGCOLOR(yellow):NSControl|
|CENTER:↓|
|BGCOLOR(yellow):[[NSTextField]]|
&amp;color(green){NSSecureTextFieldはテキストを非表示にするNSTextFieldのサブクラスです}
    NSSecureTextField *stf=[[NSSecureTextField alloc]init];
    stf.frame=CGRectMake(100, 100, 100, 30);
    stf.textColor=[NSColor blueColor];
    [self.window.contentView addSubview:stf];

#ref(secureTextField001.png)    </description>
    <dc:date>2012-09-05T14:23:44+09:00</dc:date>
    <utime>1346822624</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/hotmilk005/pages/29.html">
    <title>NSTokenField</title>
    <link>https://w.atwiki.jp/hotmilk005/pages/29.html</link>
    <description>
      &amp;color(green){クラス変成}
|BGCOLOR(yellow):NSObject|
|CENTER:↓|
|BGCOLOR(yellow):NSResponder|
|CENTER:↓|
|BGCOLOR(yellow):NSView|
|CENTER:↓|
|BGCOLOR(yellow):NSControl|
|CENTER:↓|
|BGCOLOR(yellow):[[NSTextField]]|

&amp;color(green){テキストフィールドの様に文字を直接入力したり右側のポップアップから自動入力したりするクラス}
    NSArray *array=[NSArray arrayWithObjects:@&quot;a&quot;,@&quot;b&quot;,@&quot;c&quot;,nil];
    [[NSComboBox]] *combo=[[NSComboBox alloc]initWithFrame:CGRectMake(100, 100, 100, 30)];
    [combo addItemsWithObjectValues:array];
    [self.window.contentView addSubview:combo];    </description>
    <dc:date>2012-09-05T00:13:40+09:00</dc:date>
    <utime>1346771620</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/hotmilk005/pages/28.html">
    <title>NSSearchField</title>
    <link>https://w.atwiki.jp/hotmilk005/pages/28.html</link>
    <description>
      &amp;color(green){？？？}
     
     

&amp;ref(searchField001.png)

|プロパティ名|プロパティの効果|
|recentsAutosaveName|??|
| recentSearches |??|    </description>
    <dc:date>2012-09-04T00:07:19+09:00</dc:date>
    <utime>1346684839</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/hotmilk005/pages/27.html">
    <title>NSStepper</title>
    <link>https://w.atwiki.jp/hotmilk005/pages/27.html</link>
    <description>
      &amp;color(green){クラス変成}
|BGCOLOR(yellow):NSObject|
|CENTER:↓|
|BGCOLOR(yellow):NSResponder|
|CENTER:↓|
|BGCOLOR(yellow):NSView|
|CENTER:↓|
|BGCOLOR(yellow):NSControl|

&amp;color(green){プラスマイナスボタンを管理するクラス}
    stepper=[[NSStepper alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];
    stepper.action=@selector(plusOne);
    stepper.increment=1;
    stepper.minValue=0;
    stepper.maxValue=9;
    stepper.valueWraps=NO;
    [self.window.contentView addSubview:stepper];
    
    -(void)plusOne
    {
        NSLog(@&quot;%ld&quot;,stepper.integerValue);
    }

&amp;ref(stepper01.png)

|プロパティ名|プロパティの属性|プロパティの効果|
|increment|double|ボタンを押したときの変更される量|
|minValue|double|最低値|
|maxValue|double|最大値|
|valueWraps|BOOL|ここをYESにすると最低値、最大値を超えると最大値、最低値にリターンされる|    </description>
    <dc:date>2012-09-04T23:01:37+09:00</dc:date>
    <utime>1346767297</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/hotmilk005/pages/26.html">
    <title>NSTextField</title>
    <link>https://w.atwiki.jp/hotmilk005/pages/26.html</link>
    <description>
      &amp;color(green){NSObject}
&amp;color(green){　∟NSResponder}
&amp;color(green){　　∟NSView}
&amp;color(green){　　　∟NSControl}
&amp;color(green){　　　　∟NSButton}
&amp;color(green){NSTextFieldはiPhoneでいうUITextFieldはもちろん、UILabelにもなるようです。}
    NSTextField *tf=[[NSTextField alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];
    tf.stringValue=@&quot;NSTextField&quot;;
    tf.backgroundColor=[NSColor clearColor];
    [tf setEnabled:NO];
    [tf setBordered:NO];
    [tf sizeToFit];
    [self.window.contentView addSubview:tf];

#ref(textField001.png)
|BGCOLOR(#fc6):COLOR(#000):プロパティ名|BGCOLOR(#b56):COLOR(#fff):読&amp;br()専|CENTER:BGCOLOR(#fc6):COLOR(#000):効果|CENTER:BGCOLOR(#ac6):COLOR(#000):引数、戻り値|
|BGCOLOR(#fea):COLOR(#000):allowsEditingTextAttributes|BGCOLOR(#c67):COLOR(#fff):|CENTER:BGCOLOR(#fea):COLOR(#000):テキストのフォント、色の変更の可否|CENTER:BGCOLOR(#67f):COLOR(#fff):NSAttributedString|
|BGCOLOR(#fea):COLOR(#000):backgroundColor|BGCOLOR(#c67):COLOR(#fff):|CENTER:BGCOLOR(#fea):COLOR(#000):テキストフィールドの背景色の変更|CENTER:BGCOLOR(#67f):    </description>
    <dc:date>2012-09-22T22:46:56+09:00</dc:date>
    <utime>1348321616</utime>
  </item>
  </rdf:RDF>
