Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
cocoapods
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gengmeiios
cocoapods
Commits
78c554e3
Commit
78c554e3
authored
Oct 20, 2011
by
Eloy Duran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make the MacRubySample load a twitter feed by using ASIHTTPRequest and SBJson.
parent
ecbb384d
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
524 additions
and
336 deletions
+524
-336
AppDelegate.rb
examples/MacRubySample/MacRubySample/AppDelegate.rb
+34
-17
MainMenu.xib
examples/MacRubySample/MacRubySample/en.lproj/MainMenu.xib
+484
-318
Podfile
examples/MacRubySample/Podfile
+1
-1
README
examples/MacRubySample/README
+5
-0
No files found.
examples/MacRubySample/MacRubySample/AppDelegate.rb
View file @
78c554e3
# Load the BridgeSupport metadata generated by CocoaPods from all dependencies.
p
NSBundle
.
mainBundle
.
pathForResource
(
"Pods"
,
ofType
:"bridgesupport"
)
load_bridge_support_file
NSBundle
.
mainBundle
.
pathForResource
(
"Pods"
,
ofType
:"bridgesupport"
)
class
AppDelegate
attr_accessor
:window
URL
=
"http://api.twitter.com/1/statuses/user_timeline.json?screen_name=%s"
attr_accessor
:window
,
:tableView
,
:reloadButton
,
:handleTextField
def
awakeFromNib
@tweets
=
[]
@handleTextField
.
stringValue
=
"alloy"
end
def
applicationDidFinishLaunching
(
notification
)
@queue
=
NSOperationQueue
.
new
refreshData
(
nil
)
end
#NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"https://gowalla.com/users/mattt.json"]];
#AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
#NSLog(@"Name: %@ %@", [JSON valueForKeyPath:@"first_name"], [JSON valueForKeyPath:@"last_name"]);
#} failure:nil];
def
refreshData
(
sender
)
url
=
NSURL
.
URLWithString
(
URL
%
@handleTextField
.
stringValue
.
strip
)
@handleTextField
.
enabled
=
@reloadButton
.
enabled
=
false
#NSOperationQueue *queue = [[[NSOperationQueue alloc] init] autorelease];
#[queue addOperation:operation];
@request
=
ASIHTTPRequest
.
requestWithURL
(
url
)
@request
.
completionBlock
=
lambda
do
puts
"Request completed!"
@tweets
=
@request
.
responseString
.
JSONValue
@tableView
.
reloadData
@handleTextField
.
enabled
=
@reloadButton
.
enabled
=
true
end
@request
.
failedBlock
=
lambda
do
puts
"Request failed :("
puts
@request
.
error
.
localizedDescription
@handleTextField
.
enabled
=
@reloadButton
.
enabled
=
true
end
@request
.
startAsynchronous
end
def
refreshData
(
sender
)
url
=
NSURL
.
URLWithString
(
"http://api.twitter.com/1/statuses/user_timeline.json?screen_name=alloy"
)
request
=
NSURLRequest
.
requestWithURL
(
url
)
operation
=
AFJSONRequestOperation
.
JSONRequestOperationWithRequest
(
request
,
success
:lambda
{
|
request
,
response
,
json
|
p
json
},
failure
:nil
)
@queue
.
addOperation
(
operation
)
p
@queue
def
numberOfRowsInTableView
(
tableView
)
@tweets
.
size
end
def
tableView
(
tableView
,
objectValueForTableColumn
:column
,
row
:row
)
if
tweet
=
@tweets
[
row
]
tweet
[
'text'
]
end
end
end
examples/MacRubySample/MacRubySample/en.lproj/MainMenu.xib
View file @
78c554e3
<?xml version="1.0" encoding="UTF-8"?>
<archive
type=
"com.apple.InterfaceBuilder3.Cocoa.XIB"
version=
"7.10"
>
<data>
<int
key=
"IBDocument.SystemTarget"
>
10
6
0
</int>
<string
key=
"IBDocument.SystemVersion"
>
1
0J567
</string>
<string
key=
"IBDocument.InterfaceBuilderVersion"
>
1
305
</string>
<string
key=
"IBDocument.AppKitVersion"
>
1
038.35
</string>
<string
key=
"IBDocument.HIToolboxVersion"
>
462
.00
</string>
<int
key=
"IBDocument.SystemTarget"
>
10
7
0
</int>
<string
key=
"IBDocument.SystemVersion"
>
1
1C74
</string>
<string
key=
"IBDocument.InterfaceBuilderVersion"
>
1
938
</string>
<string
key=
"IBDocument.AppKitVersion"
>
1
138.23
</string>
<string
key=
"IBDocument.HIToolboxVersion"
>
567
.00
</string>
<object
class=
"NSMutableDictionary"
key=
"IBDocument.PluginVersions"
>
<string
key=
"NS.key.0"
>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string
key=
"NS.object.0"
>
1
305
</string>
<string
key=
"NS.object.0"
>
1
938
</string>
</object>
<object
class=
"NSArray"
key=
"IBDocument.IntegratedClassDependencies"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
<string>
NSWindowTemplate
</string>
<string>
NSView
</string>
<string>
NSMenu
</string>
<string>
NSScroller
</string>
<string>
NSMenuItem
</string>
<string>
NSMenu
</string>
<string>
NSScrollView
</string>
<string>
NSTextFieldCell
</string>
<string>
NSButton
</string>
<string>
NSButtonCell
</string>
<string>
NSTableView
</string>
<string>
NSCustomObject
</string>
<string>
NSView
</string>
<string>
NSWindowTemplate
</string>
<string>
NSTableColumn
</string>
<string>
NSTextField
</string>
</object>
<object
class=
"NSArray"
key=
"IBDocument.PluginDependencies"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
</object>
<object
class=
"NSMutableDictionary"
key=
"IBDocument.Metadata"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
<object
class=
"NSArray"
key=
"dict.sortedKeys"
id=
"0"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
</object>
<reference
key=
"dict.values"
ref=
"0"
/>
<string
key=
"NS.key.0"
>
PluginDependencyRecalculationVersion
</string>
<integer
value=
"1"
key=
"NS.object.0"
/>
</object>
<object
class=
"NSMutableArray"
key=
"IBDocument.RootObjects"
id=
"1048"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
...
...
@@ -1324,13 +1329,230 @@
<string
key=
"NSWindowTitle"
>
MacRubySample
</string>
<string
key=
"NSWindowClass"
>
NSWindow
</string>
<nil
key=
"NSViewClass"
/>
<nil
key=
"NSUserInterfaceItemIdentifier"
/>
<object
class=
"NSView"
key=
"NSWindowView"
id=
"439893737"
>
<nil
key=
"NSNextResponder"
/>
<reference
key=
"NSNextResponder"
/>
<int
key=
"NSvFlags"
>
256
</int>
<object
class=
"NSMutableArray"
key=
"NSSubviews"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
<object
class=
"NSScrollView"
id=
"288346233"
>
<reference
key=
"NSNextResponder"
ref=
"439893737"
/>
<int
key=
"NSvFlags"
>
274
</int>
<object
class=
"NSMutableArray"
key=
"NSSubviews"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
<object
class=
"NSClipView"
id=
"486591749"
>
<reference
key=
"NSNextResponder"
ref=
"288346233"
/>
<int
key=
"NSvFlags"
>
2304
</int>
<object
class=
"NSMutableArray"
key=
"NSSubviews"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
<object
class=
"NSTableView"
id=
"251203579"
>
<reference
key=
"NSNextResponder"
ref=
"486591749"
/>
<int
key=
"NSvFlags"
>
256
</int>
<string
key=
"NSFrameSize"
>
{480, 320}
</string>
<reference
key=
"NSSuperview"
ref=
"486591749"
/>
<reference
key=
"NSWindow"
/>
<reference
key=
"NSNextKeyView"
ref=
"1066404890"
/>
<string
key=
"NSReuseIdentifierKey"
>
_NS:1828
</string>
<bool
key=
"NSEnabled"
>
YES
</bool>
<object
class=
"_NSCornerView"
key=
"NSCornerView"
>
<nil
key=
"NSNextResponder"
/>
<int
key=
"NSvFlags"
>
-2147483392
</int>
<string
key=
"NSFrame"
>
{{224, 0}, {16, 17}}
</string>
<string
key=
"NSReuseIdentifierKey"
>
_NS:1833
</string>
</object>
<object
class=
"NSMutableArray"
key=
"NSTableColumns"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
<object
class=
"NSTableColumn"
id=
"369027425"
>
<double
key=
"NSWidth"
>
477
</double>
<double
key=
"NSMinWidth"
>
40
</double>
<double
key=
"NSMaxWidth"
>
1000
</double>
<object
class=
"NSTableHeaderCell"
key=
"NSHeaderCell"
>
<int
key=
"NSCellFlags"
>
75628096
</int>
<int
key=
"NSCellFlags2"
>
2048
</int>
<string
key=
"NSContents"
/>
<object
class=
"NSFont"
key=
"NSSupport"
id=
"1015190562"
>
<string
key=
"NSName"
>
LucidaGrande
</string>
<double
key=
"NSSize"
>
13
</double>
<int
key=
"NSfFlags"
>
1044
</int>
</object>
<object
class=
"NSColor"
key=
"NSBackgroundColor"
>
<int
key=
"NSColorSpace"
>
3
</int>
<bytes
key=
"NSWhite"
>
MC4zMzMzMzI5ODU2AA
</bytes>
</object>
<object
class=
"NSColor"
key=
"NSTextColor"
>
<int
key=
"NSColorSpace"
>
6
</int>
<string
key=
"NSCatalogName"
>
System
</string>
<string
key=
"NSColorName"
>
headerTextColor
</string>
<object
class=
"NSColor"
key=
"NSColor"
id=
"679556961"
>
<int
key=
"NSColorSpace"
>
3
</int>
<bytes
key=
"NSWhite"
>
MAA
</bytes>
</object>
</object>
</object>
<object
class=
"NSTextFieldCell"
key=
"NSDataCell"
id=
"893319098"
>
<int
key=
"NSCellFlags"
>
337772096
</int>
<int
key=
"NSCellFlags2"
>
2048
</int>
<string
key=
"NSContents"
>
Text Cell
</string>
<reference
key=
"NSSupport"
ref=
"1015190562"
/>
<reference
key=
"NSControlView"
ref=
"251203579"
/>
<object
class=
"NSColor"
key=
"NSBackgroundColor"
id=
"378093619"
>
<int
key=
"NSColorSpace"
>
6
</int>
<string
key=
"NSCatalogName"
>
System
</string>
<string
key=
"NSColorName"
>
controlBackgroundColor
</string>
<object
class=
"NSColor"
key=
"NSColor"
>
<int
key=
"NSColorSpace"
>
3
</int>
<bytes
key=
"NSWhite"
>
MC42NjY2NjY2NjY3AA
</bytes>
</object>
</object>
<object
class=
"NSColor"
key=
"NSTextColor"
>
<int
key=
"NSColorSpace"
>
6
</int>
<string
key=
"NSCatalogName"
>
System
</string>
<string
key=
"NSColorName"
>
controlTextColor
</string>
<reference
key=
"NSColor"
ref=
"679556961"
/>
</object>
</object>
<int
key=
"NSResizingMask"
>
3
</int>
<bool
key=
"NSIsResizeable"
>
YES
</bool>
<reference
key=
"NSTableView"
ref=
"251203579"
/>
</object>
</object>
<double
key=
"NSIntercellSpacingWidth"
>
3
</double>
<double
key=
"NSIntercellSpacingHeight"
>
2
</double>
<object
class=
"NSColor"
key=
"NSBackgroundColor"
id=
"353636177"
>
<int
key=
"NSColorSpace"
>
3
</int>
<bytes
key=
"NSWhite"
>
MQA
</bytes>
</object>
<object
class=
"NSColor"
key=
"NSGridColor"
>
<int
key=
"NSColorSpace"
>
6
</int>
<string
key=
"NSCatalogName"
>
System
</string>
<string
key=
"NSColorName"
>
gridColor
</string>
<object
class=
"NSColor"
key=
"NSColor"
>
<int
key=
"NSColorSpace"
>
3
</int>
<bytes
key=
"NSWhite"
>
MC41AA
</bytes>
</object>
</object>
<double
key=
"NSRowHeight"
>
17
</double>
<int
key=
"NSTvFlags"
>
-759169024
</int>
<reference
key=
"NSDelegate"
/>
<reference
key=
"NSDataSource"
/>
<int
key=
"NSColumnAutoresizingStyle"
>
4
</int>
<int
key=
"NSDraggingSourceMaskForLocal"
>
15
</int>
<int
key=
"NSDraggingSourceMaskForNonLocal"
>
0
</int>
<bool
key=
"NSAllowsTypeSelect"
>
NO
</bool>
<int
key=
"NSTableViewDraggingDestinationStyle"
>
0
</int>
<int
key=
"NSTableViewGroupRowStyle"
>
1
</int>
</object>
</object>
<string
key=
"NSFrame"
>
{{1, 1}, {480, 320}}
</string>
<reference
key=
"NSSuperview"
ref=
"288346233"
/>
<reference
key=
"NSWindow"
/>
<reference
key=
"NSNextKeyView"
ref=
"251203579"
/>
<string
key=
"NSReuseIdentifierKey"
>
_NS:1826
</string>
<reference
key=
"NSDocView"
ref=
"251203579"
/>
<reference
key=
"NSBGColor"
ref=
"378093619"
/>
<int
key=
"NScvFlags"
>
4
</int>
</object>
<object
class=
"NSScroller"
id=
"1066404890"
>
<reference
key=
"NSNextResponder"
ref=
"288346233"
/>
<int
key=
"NSvFlags"
>
-2147483392
</int>
<string
key=
"NSFrame"
>
{{224, 17}, {15, 102}}
</string>
<reference
key=
"NSSuperview"
ref=
"288346233"
/>
<reference
key=
"NSWindow"
/>
<reference
key=
"NSNextKeyView"
ref=
"427055006"
/>
<string
key=
"NSReuseIdentifierKey"
>
_NS:1845
</string>
<reference
key=
"NSTarget"
ref=
"288346233"
/>
<string
key=
"NSAction"
>
_doScroller:
</string>
<double
key=
"NSPercent"
>
0.99688473520249221
</double>
</object>
<object
class=
"NSScroller"
id=
"427055006"
>
<reference
key=
"NSNextResponder"
ref=
"288346233"
/>
<int
key=
"NSvFlags"
>
-2147483392
</int>
<string
key=
"NSFrame"
>
{{1, 119}, {223, 15}}
</string>
<reference
key=
"NSSuperview"
ref=
"288346233"
/>
<reference
key=
"NSWindow"
/>
<reference
key=
"NSNextKeyView"
ref=
"1006251752"
/>
<string
key=
"NSReuseIdentifierKey"
>
_NS:1847
</string>
<int
key=
"NSsFlags"
>
1
</int>
<reference
key=
"NSTarget"
ref=
"288346233"
/>
<string
key=
"NSAction"
>
_doScroller:
</string>
<double
key=
"NSPercent"
>
0.99792099792099798
</double>
</object>
</object>
<string
key=
"NSFrame"
>
{{-1, 39}, {482, 322}}
</string>
<reference
key=
"NSSuperview"
ref=
"439893737"
/>
<reference
key=
"NSWindow"
/>
<reference
key=
"NSNextKeyView"
ref=
"486591749"
/>
<string
key=
"NSReuseIdentifierKey"
>
_NS:1824
</string>
<int
key=
"NSsFlags"
>
133682
</int>
<reference
key=
"NSVScroller"
ref=
"1066404890"
/>
<reference
key=
"NSHScroller"
ref=
"427055006"
/>
<reference
key=
"NSContentView"
ref=
"486591749"
/>
<bytes
key=
"NSScrollAmts"
>
QSAAAEEgAABBmAAAQZgAAA
</bytes>
</object>
<object
class=
"NSButton"
id=
"326359547"
>
<reference
key=
"NSNextResponder"
ref=
"439893737"
/>
<int
key=
"NSvFlags"
>
293
</int>
<string
key=
"NSFrame"
>
{{383, 2}, {83, 32}}
</string>
<reference
key=
"NSSuperview"
ref=
"439893737"
/>
<reference
key=
"NSWindow"
/>
<reference
key=
"NSNextKeyView"
/>
<string
key=
"NSReuseIdentifierKey"
>
_NS:687
</string>
<bool
key=
"NSEnabled"
>
YES
</bool>
<object
class=
"NSButtonCell"
key=
"NSCell"
id=
"240553372"
>
<int
key=
"NSCellFlags"
>
604110336
</int>
<int
key=
"NSCellFlags2"
>
134217728
</int>
<string
key=
"NSContents"
>
Reload
</string>
<reference
key=
"NSSupport"
ref=
"1015190562"
/>
<string
key=
"NSCellIdentifier"
>
_NS:687
</string>
<reference
key=
"NSControlView"
ref=
"326359547"
/>
<int
key=
"NSButtonFlags"
>
-2038284033
</int>
<int
key=
"NSButtonFlags2"
>
129
</int>
<string
key=
"NSAlternateContents"
/>
<string
key=
"NSKeyEquivalent"
/>
<int
key=
"NSPeriodicDelay"
>
200
</int>
<int
key=
"NSPeriodicInterval"
>
25
</int>
</object>
</object>
<object
class=
"NSTextField"
id=
"1006251752"
>
<reference
key=
"NSNextResponder"
ref=
"439893737"
/>
<int
key=
"NSvFlags"
>
290
</int>
<string
key=
"NSFrame"
>
{{20, 8}, {361, 22}}
</string>
<reference
key=
"NSSuperview"
ref=
"439893737"
/>
<reference
key=
"NSWindow"
/>
<reference
key=
"NSNextKeyView"
ref=
"326359547"
/>
<string
key=
"NSReuseIdentifierKey"
>
_NS:903
</string>
<bool
key=
"NSEnabled"
>
YES
</bool>
<object
class=
"NSTextFieldCell"
key=
"NSCell"
id=
"355251967"
>
<int
key=
"NSCellFlags"
>
-1267597759
</int>
<int
key=
"NSCellFlags2"
>
272630784
</int>
<string
key=
"NSContents"
/>
<reference
key=
"NSSupport"
ref=
"1015190562"
/>
<string
key=
"NSCellIdentifier"
>
_NS:903
</string>
<reference
key=
"NSControlView"
ref=
"1006251752"
/>
<bool
key=
"NSDrawsBackground"
>
YES
</bool>
<object
class=
"NSColor"
key=
"NSBackgroundColor"
>
<int
key=
"NSColorSpace"
>
6
</int>
<string
key=
"NSCatalogName"
>
System
</string>
<string
key=
"NSColorName"
>
textBackgroundColor
</string>
<reference
key=
"NSColor"
ref=
"353636177"
/>
</object>
<object
class=
"NSColor"
key=
"NSTextColor"
>
<int
key=
"NSColorSpace"
>
6
</int>
<string
key=
"NSCatalogName"
>
System
</string>
<string
key=
"NSColorName"
>
textColor
</string>
<reference
key=
"NSColor"
ref=
"679556961"
/>
</object>
</object>
</object>
</object>
<string
key=
"NSFrameSize"
>
{480, 360}
</string>
<reference
key=
"NSSuperview"
/>
<reference
key=
"NSWindow"
/>
<reference
key=
"NSNextKeyView"
ref=
"288346233"
/>
</object>
<string
key=
"NSScreenRect"
>
{{0, 0}, {1920, 1178}}
</string>
<string
key=
"NSMaxSize"
>
{1e+13, 1e+13}
</string>
<string
key=
"NSScreenRect"
>
{{0, 0}, {1280, 778}}
</string>
<string
key=
"NSMaxSize"
>
{10000000000000, 10000000000000}
</string>
<bool
key=
"NSWindowIsRestorable"
>
YES
</bool>
</object>
<object
class=
"NSCustomObject"
id=
"976324537"
>
<string
key=
"NSClassName"
>
AppDelegate
</string>
...
...
@@ -1342,6 +1564,30 @@
<object
class=
"IBObjectContainer"
key=
"IBDocument.Objects"
>
<object
class=
"NSMutableArray"
key=
"connectionRecords"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBActionConnection"
key=
"connection"
>
<string
key=
"label"
>
terminate:
</string>
<reference
key=
"source"
ref=
"1050"
/>
<reference
key=
"destination"
ref=
"632727374"
/>
</object>
<int
key=
"connectionID"
>
449
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBActionConnection"
key=
"connection"
>
<string
key=
"label"
>
orderFrontStandardAboutPanel:
</string>
<reference
key=
"source"
ref=
"1021"
/>
<reference
key=
"destination"
ref=
"238522557"
/>
</object>
<int
key=
"connectionID"
>
142
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBOutletConnection"
key=
"connection"
>
<string
key=
"label"
>
delegate
</string>
<reference
key=
"source"
ref=
"1021"
/>
<reference
key=
"destination"
ref=
"976324537"
/>
</object>
<int
key=
"connectionID"
>
495
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBActionConnection"
key=
"connection"
>
<string
key=
"label"
>
performMiniaturize:
</string>
...
...
@@ -1382,14 +1628,6 @@
</object>
<int
key=
"connectionID"
>
127
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBActionConnection"
key=
"connection"
>
<string
key=
"label"
>
orderFrontStandardAboutPanel:
</string>
<reference
key=
"source"
ref=
"1021"
/>
<reference
key=
"destination"
ref=
"238522557"
/>
</object>
<int
key=
"connectionID"
>
142
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBActionConnection"
key=
"connection"
>
<string
key=
"label"
>
performClose:
</string>
...
...
@@ -1630,46 +1868,6 @@
</object>
<int
key=
"connectionID"
>
374
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBActionConnection"
key=
"connection"
>
<string
key=
"label"
>
addFontTrait:
</string>
<reference
key=
"source"
ref=
"755631768"
/>
<reference
key=
"destination"
ref=
"305399458"
/>
</object>
<int
key=
"connectionID"
>
421
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBActionConnection"
key=
"connection"
>
<string
key=
"label"
>
addFontTrait:
</string>
<reference
key=
"source"
ref=
"755631768"
/>
<reference
key=
"destination"
ref=
"814362025"
/>
</object>
<int
key=
"connectionID"
>
422
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBActionConnection"
key=
"connection"
>
<string
key=
"label"
>
modifyFont:
</string>
<reference
key=
"source"
ref=
"755631768"
/>
<reference
key=
"destination"
ref=
"885547335"
/>
</object>
<int
key=
"connectionID"
>
423
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBActionConnection"
key=
"connection"
>
<string
key=
"label"
>
orderFrontFontPanel:
</string>
<reference
key=
"source"
ref=
"755631768"
/>
<reference
key=
"destination"
ref=
"159677712"
/>
</object>
<int
key=
"connectionID"
>
424
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBActionConnection"
key=
"connection"
>
<string
key=
"label"
>
modifyFont:
</string>
<reference
key=
"source"
ref=
"755631768"
/>
<reference
key=
"destination"
ref=
"158063935"
/>
</object>
<int
key=
"connectionID"
>
425
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBActionConnection"
key=
"connection"
>
<string
key=
"label"
>
raiseBaseline:
</string>
...
...
@@ -1798,14 +1996,6 @@
</object>
<int
key=
"connectionID"
>
441
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBActionConnection"
key=
"connection"
>
<string
key=
"label"
>
terminate:
</string>
<reference
key=
"source"
ref=
"1050"
/>
<reference
key=
"destination"
ref=
"632727374"
/>
</object>
<int
key=
"connectionID"
>
449
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBActionConnection"
key=
"connection"
>
<string
key=
"label"
>
toggleAutomaticSpellingCorrection:
</string>
...
...
@@ -1902,14 +2092,6 @@
</object>
<int
key=
"connectionID"
>
493
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBOutletConnection"
key=
"connection"
>
<string
key=
"label"
>
delegate
</string>
<reference
key=
"source"
ref=
"1021"
/>
<reference
key=
"destination"
ref=
"976324537"
/>
</object>
<int
key=
"connectionID"
>
495
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBActionConnection"
key=
"connection"
>
<string
key=
"label"
>
alignCenter:
</string>
...
...
@@ -2014,6 +2196,46 @@
</object>
<int
key=
"connectionID"
>
530
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBActionConnection"
key=
"connection"
>
<string
key=
"label"
>
addFontTrait:
</string>
<reference
key=
"source"
ref=
"755631768"
/>
<reference
key=
"destination"
ref=
"305399458"
/>
</object>
<int
key=
"connectionID"
>
421
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBActionConnection"
key=
"connection"
>
<string
key=
"label"
>
addFontTrait:
</string>
<reference
key=
"source"
ref=
"755631768"
/>
<reference
key=
"destination"
ref=
"814362025"
/>
</object>
<int
key=
"connectionID"
>
422
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBActionConnection"
key=
"connection"
>
<string
key=
"label"
>
modifyFont:
</string>
<reference
key=
"source"
ref=
"755631768"
/>
<reference
key=
"destination"
ref=
"885547335"
/>
</object>
<int
key=
"connectionID"
>
423
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBActionConnection"
key=
"connection"
>
<string
key=
"label"
>
orderFrontFontPanel:
</string>
<reference
key=
"source"
ref=
"755631768"
/>
<reference
key=
"destination"
ref=
"159677712"
/>
</object>
<int
key=
"connectionID"
>
424
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBActionConnection"
key=
"connection"
>
<string
key=
"label"
>
modifyFont:
</string>
<reference
key=
"source"
ref=
"755631768"
/>
<reference
key=
"destination"
ref=
"158063935"
/>
</object>
<int
key=
"connectionID"
>
425
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBOutletConnection"
key=
"connection"
>
<string
key=
"label"
>
window
</string>
...
...
@@ -2022,13 +2244,63 @@
</object>
<int
key=
"connectionID"
>
532
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBOutletConnection"
key=
"connection"
>
<string
key=
"label"
>
tableView
</string>
<reference
key=
"source"
ref=
"976324537"
/>
<reference
key=
"destination"
ref=
"251203579"
/>
</object>
<int
key=
"connectionID"
>
542
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBOutletConnection"
key=
"connection"
>
<string
key=
"label"
>
reloadButton
</string>
<reference
key=
"source"
ref=
"976324537"
/>
<reference
key=
"destination"
ref=
"326359547"
/>
</object>
<int
key=
"connectionID"
>
550
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBActionConnection"
key=
"connection"
>
<string
key=
"label"
>
refreshData:
</string>
<reference
key=
"source"
ref=
"976324537"
/>
<reference
key=
"destination"
ref=
"326359547"
/>
</object>
<int
key=
"connectionID"
>
551
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBOutletConnection"
key=
"connection"
>
<string
key=
"label"
>
handleTextField
</string>
<reference
key=
"source"
ref=
"976324537"
/>
<reference
key=
"destination"
ref=
"1006251752"
/>
</object>
<int
key=
"connectionID"
>
554
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBOutletConnection"
key=
"connection"
>
<string
key=
"label"
>
dataSource
</string>
<reference
key=
"source"
ref=
"251203579"
/>
<reference
key=
"destination"
ref=
"976324537"
/>
</object>
<int
key=
"connectionID"
>
543
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBOutletConnection"
key=
"connection"
>
<string
key=
"label"
>
delegate
</string>
<reference
key=
"source"
ref=
"251203579"
/>
<reference
key=
"destination"
ref=
"976324537"
/>
</object>
<int
key=
"connectionID"
>
544
</int>
</object>
</object>
<object
class=
"IBMutableOrderedSet"
key=
"objectRecords"
>
<object
class=
"NSArray"
key=
"orderedObjects"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
<object
class=
"IBObjectRecord"
>
<int
key=
"objectID"
>
0
</int>
<reference
key=
"object"
ref=
"0"
/>
<object
class=
"NSArray"
key=
"object"
id=
"0"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
</object>
<reference
key=
"children"
ref=
"1048"
/>
<nil
key=
"parent"
/>
</object>
...
...
@@ -2575,6 +2847,12 @@
<object
class=
"IBObjectRecord"
>
<int
key=
"objectID"
>
372
</int>
<reference
key=
"object"
ref=
"439893737"
/>
<object
class=
"NSMutableArray"
key=
"children"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
<reference
ref=
"288346233"
/>
<reference
ref=
"1006251752"
/>
<reference
ref=
"326359547"
/>
</object>
<reference
key=
"parent"
ref=
"972006081"
/>
</object>
<object
class=
"IBObjectRecord"
>
...
...
@@ -3063,6 +3341,78 @@
<reference
key=
"object"
ref=
"560145579"
/>
<reference
key=
"parent"
ref=
"956096989"
/>
</object>
<object
class=
"IBObjectRecord"
>
<int
key=
"objectID"
>
533
</int>
<reference
key=
"object"
ref=
"288346233"
/>
<object
class=
"NSMutableArray"
key=
"children"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
<reference
ref=
"251203579"
/>
<reference
ref=
"427055006"
/>
<reference
ref=
"1066404890"
/>
</object>
<reference
key=
"parent"
ref=
"439893737"
/>
</object>
<object
class=
"IBObjectRecord"
>
<int
key=
"objectID"
>
534
</int>
<reference
key=
"object"
ref=
"251203579"
/>
<object
class=
"NSMutableArray"
key=
"children"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
<reference
ref=
"369027425"
/>
</object>
<reference
key=
"parent"
ref=
"288346233"
/>
</object>
<object
class=
"IBObjectRecord"
>
<int
key=
"objectID"
>
535
</int>
<reference
key=
"object"
ref=
"427055006"
/>
<reference
key=
"parent"
ref=
"288346233"
/>
</object>
<object
class=
"IBObjectRecord"
>
<int
key=
"objectID"
>
537
</int>
<reference
key=
"object"
ref=
"1066404890"
/>
<reference
key=
"parent"
ref=
"288346233"
/>
</object>
<object
class=
"IBObjectRecord"
>
<int
key=
"objectID"
>
538
</int>
<reference
key=
"object"
ref=
"369027425"
/>
<object
class=
"NSMutableArray"
key=
"children"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
<reference
ref=
"893319098"
/>
</object>
<reference
key=
"parent"
ref=
"251203579"
/>
</object>
<object
class=
"IBObjectRecord"
>
<int
key=
"objectID"
>
541
</int>
<reference
key=
"object"
ref=
"893319098"
/>
<reference
key=
"parent"
ref=
"369027425"
/>
</object>
<object
class=
"IBObjectRecord"
>
<int
key=
"objectID"
>
547
</int>
<reference
key=
"object"
ref=
"326359547"
/>
<object
class=
"NSMutableArray"
key=
"children"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
<reference
ref=
"240553372"
/>
</object>
<reference
key=
"parent"
ref=
"439893737"
/>
</object>
<object
class=
"IBObjectRecord"
>
<int
key=
"objectID"
>
548
</int>
<reference
key=
"object"
ref=
"240553372"
/>
<reference
key=
"parent"
ref=
"326359547"
/>
</object>
<object
class=
"IBObjectRecord"
>
<int
key=
"objectID"
>
552
</int>
<reference
key=
"object"
ref=
"1006251752"
/>
<object
class=
"NSMutableArray"
key=
"children"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
<reference
ref=
"355251967"
/>
</object>
<reference
key=
"parent"
ref=
"439893737"
/>
</object>
<object
class=
"IBObjectRecord"
>
<int
key=
"objectID"
>
553
</int>
<reference
key=
"object"
ref=
"355251967"
/>
<reference
key=
"parent"
ref=
"1006251752"
/>
</object>
</object>
</object>
<object
class=
"NSMutableDictionary"
key=
"flattenedProperties"
>
...
...
@@ -3073,144 +3423,69 @@
<string>
-2.IBPluginDependency
</string>
<string>
-3.IBPluginDependency
</string>
<string>
112.IBPluginDependency
</string>
<string>
112.ImportedFromIB2
</string>
<string>
124.IBPluginDependency
</string>
<string>
124.ImportedFromIB2
</string>
<string>
125.IBPluginDependency
</string>
<string>
125.ImportedFromIB2
</string>
<string>
125.editorWindowContentRectSynchronizationRect
</string>
<string>
126.IBPluginDependency
</string>
<string>
126.ImportedFromIB2
</string>
<string>
129.IBPluginDependency
</string>
<string>
129.ImportedFromIB2
</string>
<string>
130.IBPluginDependency
</string>
<string>
130.ImportedFromIB2
</string>
<string>
130.editorWindowContentRectSynchronizationRect
</string>
<string>
131.IBPluginDependency
</string>
<string>
131.ImportedFromIB2
</string>
<string>
134.IBPluginDependency
</string>
<string>
134.ImportedFromIB2
</string>
<string>
136.IBPluginDependency
</string>
<string>
136.ImportedFromIB2
</string>
<string>
143.IBPluginDependency
</string>
<string>
143.ImportedFromIB2
</string>
<string>
144.IBPluginDependency
</string>
<string>
144.ImportedFromIB2
</string>
<string>
145.IBPluginDependency
</string>
<string>
145.ImportedFromIB2
</string>
<string>
149.IBPluginDependency
</string>
<string>
149.ImportedFromIB2
</string>
<string>
150.IBPluginDependency
</string>
<string>
150.ImportedFromIB2
</string>
<string>
19.IBPluginDependency
</string>
<string>
19.ImportedFromIB2
</string>
<string>
195.IBPluginDependency
</string>
<string>
195.ImportedFromIB2
</string>
<string>
196.IBPluginDependency
</string>
<string>
196.ImportedFromIB2
</string>
<string>
197.IBPluginDependency
</string>
<string>
197.ImportedFromIB2
</string>
<string>
198.IBPluginDependency
</string>
<string>
198.ImportedFromIB2
</string>
<string>
199.IBPluginDependency
</string>
<string>
199.ImportedFromIB2
</string>
<string>
200.IBEditorWindowLastContentRect
</string>
<string>
200.IBPluginDependency
</string>
<string>
200.ImportedFromIB2
</string>
<string>
200.editorWindowContentRectSynchronizationRect
</string>
<string>
201.IBPluginDependency
</string>
<string>
201.ImportedFromIB2
</string>
<string>
202.IBPluginDependency
</string>
<string>
202.ImportedFromIB2
</string>
<string>
203.IBPluginDependency
</string>
<string>
203.ImportedFromIB2
</string>
<string>
204.IBPluginDependency
</string>
<string>
204.ImportedFromIB2
</string>
<string>
205.IBEditorWindowLastContentRect
</string>
<string>
205.IBPluginDependency
</string>
<string>
205.ImportedFromIB2
</string>
<string>
205.editorWindowContentRectSynchronizationRect
</string>
<string>
206.IBPluginDependency
</string>
<string>
206.ImportedFromIB2
</string>
<string>
207.IBPluginDependency
</string>
<string>
207.ImportedFromIB2
</string>
<string>
208.IBPluginDependency
</string>
<string>
208.ImportedFromIB2
</string>
<string>
209.IBPluginDependency
</string>
<string>
209.ImportedFromIB2
</string>
<string>
210.IBPluginDependency
</string>
<string>
210.ImportedFromIB2
</string>
<string>
211.IBPluginDependency
</string>
<string>
211.ImportedFromIB2
</string>
<string>
212.IBPluginDependency
</string>
<string>
212.ImportedFromIB2
</string>
<string>
212.editorWindowContentRectSynchronizationRect
</string>
<string>
213.IBPluginDependency
</string>
<string>
213.ImportedFromIB2
</string>
<string>
214.IBPluginDependency
</string>
<string>
214.ImportedFromIB2
</string>
<string>
215.IBPluginDependency
</string>
<string>
215.ImportedFromIB2
</string>
<string>
216.IBPluginDependency
</string>
<string>
216.ImportedFromIB2
</string>
<string>
217.IBPluginDependency
</string>
<string>
217.ImportedFromIB2
</string>
<string>
218.IBPluginDependency
</string>
<string>
218.ImportedFromIB2
</string>
<string>
219.IBPluginDependency
</string>
<string>
219.ImportedFromIB2
</string>
<string>
220.IBEditorWindowLastContentRect
</string>
<string>
220.IBPluginDependency
</string>
<string>
220.ImportedFromIB2
</string>
<string>
220.editorWindowContentRectSynchronizationRect
</string>
<string>
221.IBPluginDependency
</string>
<string>
221.ImportedFromIB2
</string>
<string>
23.IBPluginDependency
</string>
<string>
23.ImportedFromIB2
</string>
<string>
236.IBPluginDependency
</string>
<string>
236.ImportedFromIB2
</string>
<string>
239.IBPluginDependency
</string>
<string>
239.ImportedFromIB2
</string>
<string>
24.IBEditorWindowLastContentRect
</string>
<string>
24.IBPluginDependency
</string>
<string>
24.ImportedFromIB2
</string>
<string>
24.editorWindowContentRectSynchronizationRect
</string>
<string>
29.IBEditorWindowLastContentRect
</string>
<string>
29.IBPluginDependency
</string>
<string>
29.ImportedFromIB2
</string>
<string>
29.WindowOrigin
</string>
<string>
29.editorWindowContentRectSynchronizationRect
</string>
<string>
295.IBPluginDependency
</string>
<string>
296.IBEditorWindowLastContentRect
</string>
<string>
296.IBPluginDependency
</string>
<string>
296.editorWindowContentRectSynchronizationRect
</string>
<string>
297.IBPluginDependency
</string>
<string>
298.IBPluginDependency
</string>
<string>
346.IBPluginDependency
</string>
<string>
346.ImportedFromIB2
</string>
<string>
348.IBPluginDependency
</string>
<string>
348.ImportedFromIB2
</string>
<string>
349.IBEditorWindowLastContentRect
</string>
<string>
349.IBPluginDependency
</string>
<string>
349.ImportedFromIB2
</string>
<string>
349.editorWindowContentRectSynchronizationRect
</string>
<string>
350.IBPluginDependency
</string>
<string>
350.ImportedFromIB2
</string>
<string>
351.IBPluginDependency
</string>
<string>
351.ImportedFromIB2
</string>
<string>
354.IBPluginDependency
</string>
<string>
354.ImportedFromIB2
</string>
<string>
371.IBEditorWindowLastContentRect
</string>
<string>
371.IBPluginDependency
</string>
<string>
371.IBWindowTemplateEditedContentRect
</string>
<string>
371.NSWindowTemplate.visibleAtLaunch
</string>
<string>
371.editorWindowContentRectSynchronizationRect
</string>
<string>
372.IBPluginDependency
</string>
<string>
375.IBPluginDependency
</string>
<string>
376.IBEditorWindowLastContentRect
</string>
<string>
376.IBPluginDependency
</string>
<string>
377.IBPluginDependency
</string>
<string>
388.IBEditorWindowLastContentRect
</string>
<string>
388.IBPluginDependency
</string>
<string>
389.IBPluginDependency
</string>
<string>
390.IBPluginDependency
</string>
...
...
@@ -3245,7 +3520,6 @@
<string>
419.IBPluginDependency
</string>
<string>
420.IBPluginDependency
</string>
<string>
450.IBPluginDependency
</string>
<string>
451.IBEditorWindowLastContentRect
</string>
<string>
451.IBPluginDependency
</string>
<string>
452.IBPluginDependency
</string>
<string>
453.IBPluginDependency
</string>
...
...
@@ -3258,17 +3532,14 @@
<string>
466.IBPluginDependency
</string>
<string>
485.IBPluginDependency
</string>
<string>
490.IBPluginDependency
</string>
<string>
491.IBEditorWindowLastContentRect
</string>
<string>
491.IBPluginDependency
</string>
<string>
492.IBPluginDependency
</string>
<string>
494.IBPluginDependency
</string>
<string>
496.IBPluginDependency
</string>
<string>
497.IBEditorWindowLastContentRect
</string>
<string>
497.IBPluginDependency
</string>
<string>
498.IBPluginDependency
</string>
<string>
499.IBPluginDependency
</string>
<string>
5.IBPluginDependency
</string>
<string>
5.ImportedFromIB2
</string>
<string>
500.IBPluginDependency
</string>
<string>
501.IBPluginDependency
</string>
<string>
502.IBPluginDependency
</string>
...
...
@@ -3277,7 +3548,6 @@
<string>
505.IBPluginDependency
</string>
<string>
506.IBPluginDependency
</string>
<string>
507.IBPluginDependency
</string>
<string>
508.IBEditorWindowLastContentRect
</string>
<string>
508.IBPluginDependency
</string>
<string>
509.IBPluginDependency
</string>
<string>
510.IBPluginDependency
</string>
...
...
@@ -3288,40 +3558,31 @@
<string>
515.IBPluginDependency
</string>
<string>
516.IBPluginDependency
</string>
<string>
517.IBPluginDependency
</string>
<string>
533.IBPluginDependency
</string>
<string>
534.IBPluginDependency
</string>
<string>
535.IBPluginDependency
</string>
<string>
537.IBPluginDependency
</string>
<string>
538.IBPluginDependency
</string>
<string>
541.IBPluginDependency
</string>
<string>
547.IBPluginDependency
</string>
<string>
548.IBPluginDependency
</string>
<string>
552.IBPluginDependency
</string>
<string>
553.IBPluginDependency
</string>
<string>
56.IBPluginDependency
</string>
<string>
56.ImportedFromIB2
</string>
<string>
57.IBEditorWindowLastContentRect
</string>
<string>
57.IBPluginDependency
</string>
<string>
57.ImportedFromIB2
</string>
<string>
57.editorWindowContentRectSynchronizationRect
</string>
<string>
58.IBPluginDependency
</string>
<string>
58.ImportedFromIB2
</string>
<string>
72.IBPluginDependency
</string>
<string>
72.ImportedFromIB2
</string>
<string>
73.IBPluginDependency
</string>
<string>
73.ImportedFromIB2
</string>
<string>
74.IBPluginDependency
</string>
<string>
74.ImportedFromIB2
</string>
<string>
75.IBPluginDependency
</string>
<string>
75.ImportedFromIB2
</string>
<string>
77.IBPluginDependency
</string>
<string>
77.ImportedFromIB2
</string>
<string>
78.IBPluginDependency
</string>
<string>
78.ImportedFromIB2
</string>
<string>
79.IBPluginDependency
</string>
<string>
79.ImportedFromIB2
</string>
<string>
80.IBPluginDependency
</string>
<string>
80.ImportedFromIB2
</string>
<string>
81.IBEditorWindowLastContentRect
</string>
<string>
81.IBPluginDependency
</string>
<string>
81.ImportedFromIB2
</string>
<string>
81.editorWindowContentRectSynchronizationRect
</string>
<string>
82.IBPluginDependency
</string>
<string>
82.ImportedFromIB2
</string>
<string>
83.IBPluginDependency
</string>
<string>
83.ImportedFromIB2
</string>
<string>
92.IBPluginDependency
</string>
<string>
92.ImportedFromIB2
</string>
</object>
<object
class=
"NSMutableArray"
key=
"dict.values"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
...
...
@@ -3329,144 +3590,69 @@
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
{{522, 812}, {146, 23}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
{{436, 809}, {64, 6}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
{{753, 187}, {275, 113}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
{{608, 612}, {275, 83}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
{{547, 180}, {254, 283}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
{{187, 434}, {243, 243}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
{{608, 612}, {167, 43}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
{{753, 217}, {238, 103}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
{{608, 612}, {241, 103}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
{{654, 239}, {194, 73}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
{{525, 802}, {197, 73}}
</string>
<string>
{{380, 836}, {512, 20}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
{74, 862}
</string>
<string>
{{6, 978}, {478, 20}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
{{604, 269}, {231, 43}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
{{475, 832}, {234, 43}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
{{746, 287}, {220, 133}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
{{608, 612}, {215, 63}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
{{380, 496}, {480, 360}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
{{380, 496}, {480, 360}}
</string>
<integer
value=
"1"
/>
<string>
{{33, 99}, {480, 360}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
{{591, 420}, {83, 43}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
{{523, 2}, {178, 283}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
...
...
@@ -3501,7 +3687,6 @@
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
{{753, 197}, {170, 63}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
...
...
@@ -3514,17 +3699,14 @@
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
{{725, 289}, {246, 23}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
{{674, 260}, {204, 183}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
...
...
@@ -3533,7 +3715,6 @@
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
{{878, 180}, {164, 173}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
...
...
@@ -3545,39 +3726,30 @@
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
{{286, 129}, {275, 183}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
{{23, 794}, {245, 183}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
{{452, 109}, {196, 203}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
{{145, 474}, {199, 203}}
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<integer
value=
"1"
/>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
<string>
com.apple.InterfaceBuilder.CocoaPlugin
</string>
</object>
</object>
<object
class=
"NSMutableDictionary"
key=
"unlocalizedProperties"
>
...
...
@@ -3592,23 +3764,33 @@
<reference
key=
"dict.values"
ref=
"0"
/>
</object>
<nil
key=
"sourceID"
/>
<int
key=
"maxID"
>
5
32
</int>
<int
key=
"maxID"
>
5
54
</int>
</object>
<object
class=
"IBClassDescriber"
key=
"IBDocument.Classes"
>
<object
class=
"NSMutableArray"
key=
"referencedPartialClassDescriptions"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
<object
class=
"IBPartialClassDescription"
>
<string
key=
"className"
>
NSDocument
</string>
<string
key=
"className"
>
AppDelegate
</string>
<string
key=
"superclassName"
>
NSObject
</string>
<object
class=
"NSMutableDictionary"
key=
"actions"
>
<string
key=
"NS.key.0"
>
refreshData:
</string>
<string
key=
"NS.object.0"
>
id
</string>
</object>
<object
class=
"NSMutableDictionary"
key=
"actionInfosByName"
>
<string
key=
"NS.key.0"
>
refreshData:
</string>
<object
class=
"IBActionInfo"
key=
"NS.object.0"
>
<string
key=
"name"
>
refreshData:
</string>
<string
key=
"candidateClassName"
>
id
</string>
</object>
</object>
<object
class=
"NSMutableDictionary"
key=
"outlets"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
<object
class=
"NSArray"
key=
"dict.sortedKeys"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
<string>
printDocument:
</string>
<string>
revertDocumentToSaved:
</string>
<string>
runPageLayout:
</string>
<string>
saveDocument:
</string>
<string>
saveDocumentAs:
</string>
<string>
saveDocumentTo:
</string>
<string>
handleTextField
</string>
<string>
reloadButton
</string>
<string>
tableView
</string>
<string>
window
</string>
</object>
<object
class=
"NSMutableArray"
key=
"dict.values"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
...
...
@@ -3616,62 +3798,46 @@
<string>
id
</string>
<string>
id
</string>
<string>
id
</string>
<string>
id
</string>
<string>
id
</string>
</object>
</object>
<object
class=
"NSMutableDictionary"
key=
"
action
InfosByName"
>
<object
class=
"NSMutableDictionary"
key=
"
toOneOutlet
InfosByName"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
<object
class=
"NSArray"
key=
"dict.sortedKeys"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
<string>
printDocument:
</string>
<string>
revertDocumentToSaved:
</string>
<string>
runPageLayout:
</string>
<string>
saveDocument:
</string>
<string>
saveDocumentAs:
</string>
<string>
saveDocumentTo:
</string>
<string>
handleTextField
</string>
<string>
reloadButton
</string>
<string>
tableView
</string>
<string>
window
</string>
</object>
<object
class=
"NSMutableArray"
key=
"dict.values"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
<object
class=
"IB
Action
Info"
>
<string
key=
"name"
>
printDocument:
</string>
<object
class=
"IB
ToOneOutlet
Info"
>
<string
key=
"name"
>
handleTextField
</string>
<string
key=
"candidateClassName"
>
id
</string>
</object>
<object
class=
"IB
Action
Info"
>
<string
key=
"name"
>
re
vertDocumentToSaved:
</string>
<object
class=
"IB
ToOneOutlet
Info"
>
<string
key=
"name"
>
re
loadButton
</string>
<string
key=
"candidateClassName"
>
id
</string>
</object>
<object
class=
"IB
Action
Info"
>
<string
key=
"name"
>
runPageLayout:
</string>
<object
class=
"IB
ToOneOutlet
Info"
>
<string
key=
"name"
>
tableView
</string>
<string
key=
"candidateClassName"
>
id
</string>
</object>
<object
class=
"IBActionInfo"
>
<string
key=
"name"
>
saveDocument:
</string>
<string
key=
"candidateClassName"
>
id
</string>
</object>
<object
class=
"IBActionInfo"
>
<string
key=
"name"
>
saveDocumentAs:
</string>
<string
key=
"candidateClassName"
>
id
</string>
</object>
<object
class=
"IBActionInfo"
>
<string
key=
"name"
>
saveDocumentTo:
</string>
<object
class=
"IBToOneOutletInfo"
>
<string
key=
"name"
>
window
</string>
<string
key=
"candidateClassName"
>
id
</string>
</object>
</object>
</object>
<object
class=
"IBClassDescriptionSource"
key=
"sourceIdentifier"
>
<string
key=
"majorKey"
>
IBProjectSource
</string>
<string
key=
"minorKey"
>
./Classes/
NSDocument
.h
</string>
<string
key=
"minorKey"
>
./Classes/
AppDelegate
.h
</string>
</object>
</object>
</object>
</object>
<int
key=
"IBDocument.localizationMode"
>
0
</int>
<string
key=
"IBDocument.TargetRuntimeIdentifier"
>
IBCocoaFramework
</string>
<object
class=
"NSMutableDictionary"
key=
"IBDocument.PluginDeclaredDependencyDefaults"
>
<string
key=
"NS.key.0"
>
com.apple.InterfaceBuilder.CocoaPlugin.macosx
</string>
<integer
value=
"1060"
key=
"NS.object.0"
/>
</object>
<object
class=
"NSMutableDictionary"
key=
"IBDocument.PluginDeclaredDevelopmentDependencies"
>
<string
key=
"NS.key.0"
>
com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3
</string>
<integer
value=
"3000"
key=
"NS.object.0"
/>
...
...
examples/MacRubySample/Podfile
View file @
78c554e3
...
...
@@ -3,4 +3,4 @@ platform :osx
generate_bridge_support!
dependency
'ASIHTTPRequest'
dependency
'
CocoaLumberjack
'
dependency
'
SBJson
'
examples/MacRubySample/README
0 → 100644
View file @
78c554e3
This example uses MacRuby which needs Garbage Collection support. Since CocoaPods
does not yet have a way to make a project build with GC support, you will have to
do this manually in the generated Pods.xcodeproj project.
You can find it in the build settings of the target app.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment