Added Pong

This commit is contained in:
Jeena Paradies 2011-02-28 14:58:00 +01:00
parent e53c2a82c4
commit cee10d5f75
94 changed files with 12789 additions and 0 deletions

View file

@ -0,0 +1,659 @@
//
// AsyncSocket.h
//
// This class is in the public domain.
// Originally created by Dustin Voss on Wed Jan 29 2003.
// Updated and maintained by Deusty Designs and the Mac development community.
//
// http://code.google.com/p/cocoaasyncsocket/
//
#import <Foundation/Foundation.h>
@class AsyncSocket;
@class AsyncReadPacket;
@class AsyncWritePacket;
extern NSString *const AsyncSocketException;
extern NSString *const AsyncSocketErrorDomain;
enum AsyncSocketError
{
AsyncSocketCFSocketError = kCFSocketError, // From CFSocketError enum.
AsyncSocketNoError = 0, // Never used.
AsyncSocketCanceledError, // onSocketWillConnect: returned NO.
AsyncSocketConnectTimeoutError,
AsyncSocketReadMaxedOutError, // Reached set maxLength without completing
AsyncSocketReadTimeoutError,
AsyncSocketWriteTimeoutError
};
typedef enum AsyncSocketError AsyncSocketError;
@protocol AsyncSocketDelegate
@optional
/**
* In the event of an error, the socket is closed.
* You may call "unreadData" during this call-back to get the last bit of data off the socket.
* When connecting, this delegate method may be called
* before"onSocket:didAcceptNewSocket:" or "onSocket:didConnectToHost:".
**/
- (void)onSocket:(AsyncSocket *)sock willDisconnectWithError:(NSError *)err;
/**
* Called when a socket disconnects with or without error. If you want to release a socket after it disconnects,
* do so here. It is not safe to do that during "onSocket:willDisconnectWithError:".
*
* If you call the disconnect method, and the socket wasn't already disconnected,
* this delegate method will be called before the disconnect method returns.
**/
- (void)onSocketDidDisconnect:(AsyncSocket *)sock;
/**
* Called when a socket accepts a connection. Another socket is spawned to handle it. The new socket will have
* the same delegate and will call "onSocket:didConnectToHost:port:".
**/
- (void)onSocket:(AsyncSocket *)sock didAcceptNewSocket:(AsyncSocket *)newSocket;
/**
* Called when a new socket is spawned to handle a connection. This method should return the run-loop of the
* thread on which the new socket and its delegate should operate. If omitted, [NSRunLoop currentRunLoop] is used.
**/
- (NSRunLoop *)onSocket:(AsyncSocket *)sock wantsRunLoopForNewSocket:(AsyncSocket *)newSocket;
/**
* Called when a socket is about to connect. This method should return YES to continue, or NO to abort.
* If aborted, will result in AsyncSocketCanceledError.
*
* If the connectToHost:onPort:error: method was called, the delegate will be able to access and configure the
* CFReadStream and CFWriteStream as desired prior to connection.
*
* If the connectToAddress:error: method was called, the delegate will be able to access and configure the
* CFSocket and CFSocketNativeHandle (BSD socket) as desired prior to connection. You will be able to access and
* configure the CFReadStream and CFWriteStream in the onSocket:didConnectToHost:port: method.
**/
- (BOOL)onSocketWillConnect:(AsyncSocket *)sock;
/**
* Called when a socket connects and is ready for reading and writing.
* The host parameter will be an IP address, not a DNS name.
**/
- (void)onSocket:(AsyncSocket *)sock didConnectToHost:(NSString *)host port:(UInt16)port;
/**
* Called when a socket has completed reading the requested data into memory.
* Not called if there is an error.
**/
- (void)onSocket:(AsyncSocket *)sock didReadData:(NSData *)data withTag:(long)tag;
/**
* Called when a socket has read in data, but has not yet completed the read.
* This would occur if using readToData: or readToLength: methods.
* It may be used to for things such as updating progress bars.
**/
- (void)onSocket:(AsyncSocket *)sock didReadPartialDataOfLength:(NSUInteger)partialLength tag:(long)tag;
/**
* Called when a socket has completed writing the requested data. Not called if there is an error.
**/
- (void)onSocket:(AsyncSocket *)sock didWriteDataWithTag:(long)tag;
/**
* Called when a socket has written some data, but has not yet completed the entire write.
* It may be used to for things such as updating progress bars.
**/
- (void)onSocket:(AsyncSocket *)sock didWritePartialDataOfLength:(NSUInteger)partialLength tag:(long)tag;
/**
* Called if a read operation has reached its timeout without completing.
* This method allows you to optionally extend the timeout.
* If you return a positive time interval (> 0) the read's timeout will be extended by the given amount.
* If you don't implement this method, or return a non-positive time interval (<= 0) the read will timeout as usual.
*
* The elapsed parameter is the sum of the original timeout, plus any additions previously added via this method.
* The length parameter is the number of bytes that have been read so far for the read operation.
*
* Note that this method may be called multiple times for a single read if you return positive numbers.
**/
- (NSTimeInterval)onSocket:(AsyncSocket *)sock
shouldTimeoutReadWithTag:(long)tag
elapsed:(NSTimeInterval)elapsed
bytesDone:(NSUInteger)length;
/**
* Called if a write operation has reached its timeout without completing.
* This method allows you to optionally extend the timeout.
* If you return a positive time interval (> 0) the write's timeout will be extended by the given amount.
* If you don't implement this method, or return a non-positive time interval (<= 0) the write will timeout as usual.
*
* The elapsed parameter is the sum of the original timeout, plus any additions previously added via this method.
* The length parameter is the number of bytes that have been written so far for the write operation.
*
* Note that this method may be called multiple times for a single write if you return positive numbers.
**/
- (NSTimeInterval)onSocket:(AsyncSocket *)sock
shouldTimeoutWriteWithTag:(long)tag
elapsed:(NSTimeInterval)elapsed
bytesDone:(NSUInteger)length;
/**
* Called after the socket has successfully completed SSL/TLS negotiation.
* This method is not called unless you use the provided startTLS method.
*
* If a SSL/TLS negotiation fails (invalid certificate, etc) then the socket will immediately close,
* and the onSocket:willDisconnectWithError: delegate method will be called with the specific SSL error code.
**/
- (void)onSocketDidSecure:(AsyncSocket *)sock;
@end
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#pragma mark -
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@interface AsyncSocket : NSObject
{
CFSocketNativeHandle theNativeSocket4;
CFSocketNativeHandle theNativeSocket6;
CFSocketRef theSocket4; // IPv4 accept or connect socket
CFSocketRef theSocket6; // IPv6 accept or connect socket
CFReadStreamRef theReadStream;
CFWriteStreamRef theWriteStream;
CFRunLoopSourceRef theSource4; // For theSocket4
CFRunLoopSourceRef theSource6; // For theSocket6
CFRunLoopRef theRunLoop;
CFSocketContext theContext;
NSArray *theRunLoopModes;
NSTimer *theConnectTimer;
NSMutableArray *theReadQueue;
AsyncReadPacket *theCurrentRead;
NSTimer *theReadTimer;
NSMutableData *partialReadBuffer;
NSMutableArray *theWriteQueue;
AsyncWritePacket *theCurrentWrite;
NSTimer *theWriteTimer;
id theDelegate;
UInt16 theFlags;
long theUserData;
}
- (id)init;
- (id)initWithDelegate:(id)delegate;
- (id)initWithDelegate:(id)delegate userData:(long)userData;
/* String representation is long but has no "\n". */
- (NSString *)description;
/**
* Use "canSafelySetDelegate" to see if there is any pending business (reads and writes) with the current delegate
* before changing it. It is, of course, safe to change the delegate before connecting or accepting connections.
**/
- (id)delegate;
- (BOOL)canSafelySetDelegate;
- (void)setDelegate:(id)delegate;
/* User data can be a long, or an id or void * cast to a long. */
- (long)userData;
- (void)setUserData:(long)userData;
/* Don't use these to read or write. And don't close them either! */
- (CFSocketRef)getCFSocket;
- (CFReadStreamRef)getCFReadStream;
- (CFWriteStreamRef)getCFWriteStream;
// Once one of the accept or connect methods are called, the AsyncSocket instance is locked in
// and the other accept/connect methods can't be called without disconnecting the socket first.
// If the attempt fails or times out, these methods either return NO or
// call "onSocket:willDisconnectWithError:" and "onSockedDidDisconnect:".
// When an incoming connection is accepted, AsyncSocket invokes several delegate methods.
// These methods are (in chronological order):
// 1. onSocket:didAcceptNewSocket:
// 2. onSocket:wantsRunLoopForNewSocket:
// 3. onSocketWillConnect:
//
// Your server code will need to retain the accepted socket (if you want to accept it).
// The best place to do this is probably in the onSocket:didAcceptNewSocket: method.
//
// After the read and write streams have been setup for the newly accepted socket,
// the onSocket:didConnectToHost:port: method will be called on the proper run loop.
//
// Multithreading Note: If you're going to be moving the newly accepted socket to another run
// loop by implementing onSocket:wantsRunLoopForNewSocket:, then you should wait until the
// onSocket:didConnectToHost:port: method before calling read, write, or startTLS methods.
// Otherwise read/write events are scheduled on the incorrect runloop, and chaos may ensue.
/**
* Tells the socket to begin listening and accepting connections on the given port.
* When a connection comes in, the AsyncSocket instance will call the various delegate methods (see above).
* The socket will listen on all available interfaces (e.g. wifi, ethernet, etc)
**/
- (BOOL)acceptOnPort:(UInt16)port error:(NSError **)errPtr;
/**
* This method is the same as acceptOnPort:error: with the additional option
* of specifying which interface to listen on. So, for example, if you were writing code for a server that
* has multiple IP addresses, you could specify which address you wanted to listen on. Or you could use it
* to specify that the socket should only accept connections over ethernet, and not other interfaces such as wifi.
* You may also use the special strings "localhost" or "loopback" to specify that
* the socket only accept connections from the local machine.
*
* To accept connections on any interface pass nil, or simply use the acceptOnPort:error: method.
**/
- (BOOL)acceptOnInterface:(NSString *)interface port:(UInt16)port error:(NSError **)errPtr;
/**
* Connects to the given host and port.
* The host may be a domain name (e.g. "deusty.com") or an IP address string (e.g. "192.168.0.2")
**/
- (BOOL)connectToHost:(NSString *)hostname onPort:(UInt16)port error:(NSError **)errPtr;
/**
* This method is the same as connectToHost:onPort:error: with an additional timeout option.
* To not time out use a negative time interval, or simply use the connectToHost:onPort:error: method.
**/
- (BOOL)connectToHost:(NSString *)hostname
onPort:(UInt16)port
withTimeout:(NSTimeInterval)timeout
error:(NSError **)errPtr;
/**
* Connects to the given address, specified as a sockaddr structure wrapped in a NSData object.
* For example, a NSData object returned from NSNetservice's addresses method.
*
* If you have an existing struct sockaddr you can convert it to a NSData object like so:
* struct sockaddr sa -> NSData *dsa = [NSData dataWithBytes:&remoteAddr length:remoteAddr.sa_len];
* struct sockaddr *sa -> NSData *dsa = [NSData dataWithBytes:remoteAddr length:remoteAddr->sa_len];
**/
- (BOOL)connectToAddress:(NSData *)remoteAddr error:(NSError **)errPtr;
/**
* This method is the same as connectToAddress:error: with an additional timeout option.
* To not time out use a negative time interval, or simply use the connectToAddress:error: method.
**/
- (BOOL)connectToAddress:(NSData *)remoteAddr withTimeout:(NSTimeInterval)timeout error:(NSError **)errPtr;
- (BOOL)connectToAddress:(NSData *)remoteAddr
viaInterfaceAddress:(NSData *)interfaceAddr
withTimeout:(NSTimeInterval)timeout
error:(NSError **)errPtr;
/**
* Disconnects immediately. Any pending reads or writes are dropped.
* If the socket is not already disconnected, the onSocketDidDisconnect delegate method
* will be called immediately, before this method returns.
*
* Please note the recommended way of releasing an AsyncSocket instance (e.g. in a dealloc method)
* [asyncSocket setDelegate:nil];
* [asyncSocket disconnect];
* [asyncSocket release];
**/
- (void)disconnect;
/**
* Disconnects after all pending reads have completed.
* After calling this, the read and write methods will do nothing.
* The socket will disconnect even if there are still pending writes.
**/
- (void)disconnectAfterReading;
/**
* Disconnects after all pending writes have completed.
* After calling this, the read and write methods will do nothing.
* The socket will disconnect even if there are still pending reads.
**/
- (void)disconnectAfterWriting;
/**
* Disconnects after all pending reads and writes have completed.
* After calling this, the read and write methods will do nothing.
**/
- (void)disconnectAfterReadingAndWriting;
/* Returns YES if the socket and streams are open, connected, and ready for reading and writing. */
- (BOOL)isConnected;
/**
* Returns the local or remote host and port to which this socket is connected, or nil and 0 if not connected.
* The host will be an IP address.
**/
- (NSString *)connectedHost;
- (UInt16)connectedPort;
- (NSString *)localHost;
- (UInt16)localPort;
/**
* Returns the local or remote address to which this socket is connected,
* specified as a sockaddr structure wrapped in a NSData object.
*
* See also the connectedHost, connectedPort, localHost and localPort methods.
**/
- (NSData *)connectedAddress;
- (NSData *)localAddress;
/**
* Returns whether the socket is IPv4 or IPv6.
* An accepting socket may be both.
**/
- (BOOL)isIPv4;
- (BOOL)isIPv6;
// The readData and writeData methods won't block (they are asynchronous).
//
// When a read is complete the onSocket:didReadData:withTag: delegate method is called.
// When a write is complete the onSocket:didWriteDataWithTag: delegate method is called.
//
// You may optionally set a timeout for any read/write operation. (To not timeout, use a negative time interval.)
// If a read/write opertion times out, the corresponding "onSocket:shouldTimeout..." delegate method
// is called to optionally allow you to extend the timeout.
// Upon a timeout, the "onSocket:willDisconnectWithError:" method is called, followed by "onSocketDidDisconnect".
//
// The tag is for your convenience.
// You can use it as an array index, step number, state id, pointer, etc.
/**
* Reads the first available bytes that become available on the socket.
*
* If the timeout value is negative, the read operation will not use a timeout.
**/
- (void)readDataWithTimeout:(NSTimeInterval)timeout tag:(long)tag;
/**
* Reads the first available bytes that become available on the socket.
* The bytes will be appended to the given byte buffer starting at the given offset.
* The given buffer will automatically be increased in size if needed.
*
* If the timeout value is negative, the read operation will not use a timeout.
* If the buffer if nil, the socket will create a buffer for you.
*
* If the bufferOffset is greater than the length of the given buffer,
* the method will do nothing, and the delegate will not be called.
*
* If you pass a buffer, you must not alter it in any way while AsyncSocket is using it.
* After completion, the data returned in onSocket:didReadData:withTag: will be a subset of the given buffer.
* That is, it will reference the bytes that were appended to the given buffer.
**/
- (void)readDataWithTimeout:(NSTimeInterval)timeout
buffer:(NSMutableData *)buffer
bufferOffset:(NSUInteger)offset
tag:(long)tag;
/**
* Reads the first available bytes that become available on the socket.
* The bytes will be appended to the given byte buffer starting at the given offset.
* The given buffer will automatically be increased in size if needed.
* A maximum of length bytes will be read.
*
* If the timeout value is negative, the read operation will not use a timeout.
* If the buffer if nil, a buffer will automatically be created for you.
* If maxLength is zero, no length restriction is enforced.
*
* If the bufferOffset is greater than the length of the given buffer,
* the method will do nothing, and the delegate will not be called.
*
* If you pass a buffer, you must not alter it in any way while AsyncSocket is using it.
* After completion, the data returned in onSocket:didReadData:withTag: will be a subset of the given buffer.
* That is, it will reference the bytes that were appended to the given buffer.
**/
- (void)readDataWithTimeout:(NSTimeInterval)timeout
buffer:(NSMutableData *)buffer
bufferOffset:(NSUInteger)offset
maxLength:(NSUInteger)length
tag:(long)tag;
/**
* Reads the given number of bytes.
*
* If the timeout value is negative, the read operation will not use a timeout.
*
* If the length is 0, this method does nothing and the delegate is not called.
**/
- (void)readDataToLength:(NSUInteger)length withTimeout:(NSTimeInterval)timeout tag:(long)tag;
/**
* Reads the given number of bytes.
* The bytes will be appended to the given byte buffer starting at the given offset.
* The given buffer will automatically be increased in size if needed.
*
* If the timeout value is negative, the read operation will not use a timeout.
* If the buffer if nil, a buffer will automatically be created for you.
*
* If the length is 0, this method does nothing and the delegate is not called.
* If the bufferOffset is greater than the length of the given buffer,
* the method will do nothing, and the delegate will not be called.
*
* If you pass a buffer, you must not alter it in any way while AsyncSocket is using it.
* After completion, the data returned in onSocket:didReadData:withTag: will be a subset of the given buffer.
* That is, it will reference the bytes that were appended to the given buffer.
**/
- (void)readDataToLength:(NSUInteger)length
withTimeout:(NSTimeInterval)timeout
buffer:(NSMutableData *)buffer
bufferOffset:(NSUInteger)offset
tag:(long)tag;
/**
* Reads bytes until (and including) the passed "data" parameter, which acts as a separator.
*
* If the timeout value is negative, the read operation will not use a timeout.
*
* If you pass nil or zero-length data as the "data" parameter,
* the method will do nothing, and the delegate will not be called.
*
* To read a line from the socket, use the line separator (e.g. CRLF for HTTP, see below) as the "data" parameter.
* Note that this method is not character-set aware, so if a separator can occur naturally as part of the encoding for
* a character, the read will prematurely end.
**/
- (void)readDataToData:(NSData *)data withTimeout:(NSTimeInterval)timeout tag:(long)tag;
/**
* Reads bytes until (and including) the passed "data" parameter, which acts as a separator.
* The bytes will be appended to the given byte buffer starting at the given offset.
* The given buffer will automatically be increased in size if needed.
*
* If the timeout value is negative, the read operation will not use a timeout.
* If the buffer if nil, a buffer will automatically be created for you.
*
* If the bufferOffset is greater than the length of the given buffer,
* the method will do nothing, and the delegate will not be called.
*
* If you pass a buffer, you must not alter it in any way while AsyncSocket is using it.
* After completion, the data returned in onSocket:didReadData:withTag: will be a subset of the given buffer.
* That is, it will reference the bytes that were appended to the given buffer.
*
* To read a line from the socket, use the line separator (e.g. CRLF for HTTP, see below) as the "data" parameter.
* Note that this method is not character-set aware, so if a separator can occur naturally as part of the encoding for
* a character, the read will prematurely end.
**/
- (void)readDataToData:(NSData *)data
withTimeout:(NSTimeInterval)timeout
buffer:(NSMutableData *)buffer
bufferOffset:(NSUInteger)offset
tag:(long)tag;
/**
* Reads bytes until (and including) the passed "data" parameter, which acts as a separator.
*
* If the timeout value is negative, the read operation will not use a timeout.
*
* If maxLength is zero, no length restriction is enforced.
* Otherwise if maxLength bytes are read without completing the read,
* it is treated similarly to a timeout - the socket is closed with a AsyncSocketReadMaxedOutError.
* The read will complete successfully if exactly maxLength bytes are read and the given data is found at the end.
*
* If you pass nil or zero-length data as the "data" parameter,
* the method will do nothing, and the delegate will not be called.
* If you pass a maxLength parameter that is less than the length of the data parameter,
* the method will do nothing, and the delegate will not be called.
*
* To read a line from the socket, use the line separator (e.g. CRLF for HTTP, see below) as the "data" parameter.
* Note that this method is not character-set aware, so if a separator can occur naturally as part of the encoding for
* a character, the read will prematurely end.
**/
- (void)readDataToData:(NSData *)data withTimeout:(NSTimeInterval)timeout maxLength:(NSUInteger)length tag:(long)tag;
/**
* Reads bytes until (and including) the passed "data" parameter, which acts as a separator.
* The bytes will be appended to the given byte buffer starting at the given offset.
* The given buffer will automatically be increased in size if needed.
* A maximum of length bytes will be read.
*
* If the timeout value is negative, the read operation will not use a timeout.
* If the buffer if nil, a buffer will automatically be created for you.
*
* If maxLength is zero, no length restriction is enforced.
* Otherwise if maxLength bytes are read without completing the read,
* it is treated similarly to a timeout - the socket is closed with a AsyncSocketReadMaxedOutError.
* The read will complete successfully if exactly maxLength bytes are read and the given data is found at the end.
*
* If you pass a maxLength parameter that is less than the length of the data parameter,
* the method will do nothing, and the delegate will not be called.
* If the bufferOffset is greater than the length of the given buffer,
* the method will do nothing, and the delegate will not be called.
*
* If you pass a buffer, you must not alter it in any way while AsyncSocket is using it.
* After completion, the data returned in onSocket:didReadData:withTag: will be a subset of the given buffer.
* That is, it will reference the bytes that were appended to the given buffer.
*
* To read a line from the socket, use the line separator (e.g. CRLF for HTTP, see below) as the "data" parameter.
* Note that this method is not character-set aware, so if a separator can occur naturally as part of the encoding for
* a character, the read will prematurely end.
**/
- (void)readDataToData:(NSData *)data
withTimeout:(NSTimeInterval)timeout
buffer:(NSMutableData *)buffer
bufferOffset:(NSUInteger)offset
maxLength:(NSUInteger)length
tag:(long)tag;
/**
* Writes data to the socket, and calls the delegate when finished.
*
* If you pass in nil or zero-length data, this method does nothing and the delegate will not be called.
* If the timeout value is negative, the write operation will not use a timeout.
**/
- (void)writeData:(NSData *)data withTimeout:(NSTimeInterval)timeout tag:(long)tag;
/**
* Returns progress of current read or write, from 0.0 to 1.0, or NaN if no read/write (use isnan() to check).
* "tag", "done" and "total" will be filled in if they aren't NULL.
**/
- (float)progressOfReadReturningTag:(long *)tag bytesDone:(NSUInteger *)done total:(NSUInteger *)total;
- (float)progressOfWriteReturningTag:(long *)tag bytesDone:(NSUInteger *)done total:(NSUInteger *)total;
/**
* Secures the connection using SSL/TLS.
*
* This method may be called at any time, and the TLS handshake will occur after all pending reads and writes
* are finished. This allows one the option of sending a protocol dependent StartTLS message, and queuing
* the upgrade to TLS at the same time, without having to wait for the write to finish.
* Any reads or writes scheduled after this method is called will occur over the secured connection.
*
* The possible keys and values for the TLS settings are well documented.
* Some possible keys are:
* - kCFStreamSSLLevel
* - kCFStreamSSLAllowsExpiredCertificates
* - kCFStreamSSLAllowsExpiredRoots
* - kCFStreamSSLAllowsAnyRoot
* - kCFStreamSSLValidatesCertificateChain
* - kCFStreamSSLPeerName
* - kCFStreamSSLCertificates
* - kCFStreamSSLIsServer
*
* Please refer to Apple's documentation for associated values, as well as other possible keys.
*
* If you pass in nil or an empty dictionary, the default settings will be used.
*
* The default settings will check to make sure the remote party's certificate is signed by a
* trusted 3rd party certificate agency (e.g. verisign) and that the certificate is not expired.
* However it will not verify the name on the certificate unless you
* give it a name to verify against via the kCFStreamSSLPeerName key.
* The security implications of this are important to understand.
* Imagine you are attempting to create a secure connection to MySecureServer.com,
* but your socket gets directed to MaliciousServer.com because of a hacked DNS server.
* If you simply use the default settings, and MaliciousServer.com has a valid certificate,
* the default settings will not detect any problems since the certificate is valid.
* To properly secure your connection in this particular scenario you
* should set the kCFStreamSSLPeerName property to "MySecureServer.com".
* If you do not know the peer name of the remote host in advance (for example, you're not sure
* if it will be "domain.com" or "www.domain.com"), then you can use the default settings to validate the
* certificate, and then use the X509Certificate class to verify the issuer after the socket has been secured.
* The X509Certificate class is part of the CocoaAsyncSocket open source project.
**/
- (void)startTLS:(NSDictionary *)tlsSettings;
/**
* For handling readDataToData requests, data is necessarily read from the socket in small increments.
* The performance can be much improved by allowing AsyncSocket to read larger chunks at a time and
* store any overflow in a small internal buffer.
* This is termed pre-buffering, as some data may be read for you before you ask for it.
* If you use readDataToData a lot, enabling pre-buffering will result in better performance, especially on the iPhone.
*
* The default pre-buffering state is controlled by the DEFAULT_PREBUFFERING definition.
* It is highly recommended one leave this set to YES.
*
* This method exists in case pre-buffering needs to be disabled by default for some unforeseen reason.
* In that case, this method exists to allow one to easily enable pre-buffering when ready.
**/
- (void)enablePreBuffering;
/**
* When you create an AsyncSocket, it is added to the runloop of the current thread.
* So for manually created sockets, it is easiest to simply create the socket on the thread you intend to use it.
*
* If a new socket is accepted, the delegate method onSocket:wantsRunLoopForNewSocket: is called to
* allow you to place the socket on a separate thread. This works best in conjunction with a thread pool design.
*
* If, however, you need to move the socket to a separate thread at a later time, this
* method may be used to accomplish the task.
*
* This method must be called from the thread/runloop the socket is currently running on.
*
* Note: After calling this method, all further method calls to this object should be done from the given runloop.
* Also, all delegate calls will be sent on the given runloop.
**/
- (BOOL)moveToRunLoop:(NSRunLoop *)runLoop;
/**
* Allows you to configure which run loop modes the socket uses.
* The default set of run loop modes is NSDefaultRunLoopMode.
*
* If you'd like your socket to continue operation during other modes, you may want to add modes such as
* NSModalPanelRunLoopMode or NSEventTrackingRunLoopMode. Or you may simply want to use NSRunLoopCommonModes.
*
* Accepted sockets will automatically inherit the same run loop modes as the listening socket.
*
* Note: NSRunLoopCommonModes is defined in 10.5. For previous versions one can use kCFRunLoopCommonModes.
**/
- (BOOL)setRunLoopModes:(NSArray *)runLoopModes;
- (BOOL)addRunLoopMode:(NSString *)runLoopMode;
- (BOOL)removeRunLoopMode:(NSString *)runLoopMode;
/**
* Returns the current run loop modes the AsyncSocket instance is operating in.
* The default set of run loop modes is NSDefaultRunLoopMode.
**/
- (NSArray *)runLoopModes;
/**
* In the event of an error, this method may be called during onSocket:willDisconnectWithError: to read
* any data that's left on the socket.
**/
- (NSData *)unreadData;
/* A few common line separators, for use with the readDataToData:... methods. */
+ (NSData *)CRLFData; // 0x0D0A
+ (NSData *)CRData; // 0x0D
+ (NSData *)LFData; // 0x0A
+ (NSData *)ZeroData; // 0x00
@end

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,20 @@
//
// GGSDelegate.h
// Pong
//
// Created by Jeena on 27.02.11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "GGSNetwork.h"
@class GGSNetwork;
@protocol GGSDelegate
- (void)GGSNetwork:(GGSNetwork *)ggsNetwork ready:(BOOL)ready;
- (void)GGSNetwork:(GGSNetwork *)ggsNetwork gotCommand:(NSString *)command withArgs:(NSString *)args;
- (void)GGSNetwork:(GGSNetwork *)ggsNetwork defined:(BOOL)defined;
@end

View file

@ -0,0 +1,31 @@
//
// Network.h
// Pong
//
// Created by Jeena on 27.02.11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "AsyncSocket.h"
#import "GGSDelegate.h"
@protocol GGSDelegate;
@interface GGSNetwork : NSObject {
AsyncSocket *asyncSocket;
id<GGSDelegate> delegate;
NSString *gameToken;
NSString *currentCommand;
}
@property (nonatomic, retain) AsyncSocket *asyncSocket;
@property (nonatomic, retain) id<GGSDelegate> delegate;
@property (nonatomic, retain) NSString *gameToken;
@property (nonatomic, retain) NSString *currentCommand;
- (id)initWithDelegate:(id)delegate;
- (void)define:(NSString *)sourceCode;
- (void)sendCommand:(NSString *)command withArgs:(NSString *)args;
@end

View file

@ -0,0 +1,117 @@
//
// Network.m
// Pong
//
// Created by Jeena on 27.02.11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import "GGSNetwork.h"
@implementation GGSNetwork
#define GGS_HOST @"jeena.net";
#define GGS_PORT 9000
#define NO_TIMEOUT -1
#define CONNECT_RESPONSE_TAG 9
#define HELLO_REQUEST_TAG 10
#define HELLO_RESPONSE_TAG 11
#define DEFINE_REQUEST_TAG 12
#define DEFINE_RESPONSE_TAG 13
#define COMMAND_REQUEST_TAG 14
#define COMMAND_RESPONSE_TAG 15
#define ARGS_RESPONSE_TAG 16
@synthesize asyncSocket, delegate, gameToken, currentCommand;
- (id)initWithDelegate:(id<GGSDelegate>)_delegate {
if (self = [super init]) {
delegate = _delegate;
asyncSocket = [[AsyncSocket alloc] initWithDelegate:self];
[asyncSocket connectToHost:@"jeena.net" onPort:9000 error:nil];
[asyncSocket readDataToLength:36 withTimeout:NO_TIMEOUT tag:CONNECT_RESPONSE_TAG];
}
return self;
}
- (void)define:(NSString *)sourceCode {
NSString *body = [NSString stringWithFormat:@"Token: %@\nServer-Command: define\nContent-Length: %i\n\n%@",
self.gameToken,
[sourceCode length],
sourceCode];
[asyncSocket writeData:[body dataUsingEncoding:NSUTF8StringEncoding] withTimeout:NO_TIMEOUT tag:DEFINE_REQUEST_TAG];
[asyncSocket readDataToData:[@"\n\n" dataUsingEncoding:NSUTF8StringEncoding] withTimeout:NO_TIMEOUT tag:DEFINE_RESPONSE_TAG];
}
- (void)sendCommand:(NSString *)command withArgs:(NSString *)args {
NSString *body = [NSString stringWithFormat:@"Token: %@\nGame-Command: %@\nContent-Length: %i\n\n%@",
self.gameToken,
command,
[args length]+1,
args];
[asyncSocket writeData:[body dataUsingEncoding:NSUTF8StringEncoding] withTimeout:NO_TIMEOUT tag:COMMAND_REQUEST_TAG];
// [asyncSocket readDataToData:[@"\n\n" dataUsingEncoding:NSUTF8StringEncoding] withTimeout:NO_TIMEOUT tag:COMMAND_RESPONSE_TAG];
[asyncSocket readDataToData:[@"\n" dataUsingEncoding:NSUTF8StringEncoding] withTimeout:NO_TIMEOUT tag:ARGS_RESPONSE_TAG]; // FIXME change to \n\n abd COMMAND_RESPONSE_TAG
}
- (void)onSocket:(AsyncSocket *)sock didConnectToHost:(NSString *)host port:(UInt16)port {
}
- (void)onSocket:(AsyncSocket *)sender didReadData:(NSData *)data withTag:(long)tag {
if (tag == CONNECT_RESPONSE_TAG) {
NSString *response = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
self.gameToken = response;
[response release];
[delegate GGSNetwork:self ready:YES];
} else if (tag == DEFINE_RESPONSE_TAG) {
[self.delegate GGSNetwork:self defined:YES];
} else if (tag == COMMAND_RESPONSE_TAG) {
NSString *response = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSArray *headers = [response componentsSeparatedByString:@"\n"];
[response release];
for (NSInteger i = 0; i < [headers count]; i++) {
NSString *header = [headers objectAtIndex:i];
if ([header rangeOfString:@"Client-Command: "].location == 0) {
self.currentCommand = [header substringFromIndex:16];
} else if ([header rangeOfString:@"Size: "].location == 0) {
[asyncSocket readDataToLength:[[header substringFromIndex:6] intValue] withTimeout:NO_TIMEOUT tag:ARGS_RESPONSE_TAG];
}
}
} else if (tag == ARGS_RESPONSE_TAG) {
NSString *response = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
[delegate GGSNetwork:self gotCommand:self.currentCommand withArgs:response];
[response release];
//self.currentCommand = nil;
[asyncSocket readDataToData:[@"\n" dataUsingEncoding:NSUTF8StringEncoding] withTimeout:NO_TIMEOUT tag:ARGS_RESPONSE_TAG];
}
}
- (void)dealloc {
[asyncSocket release];
[gameToken release];
[currentCommand release];
[super dealloc];
}
@end

View file

@ -0,0 +1,22 @@
//
// PongAppDelegate.h
// Pong
//
// Created by Jeena on 26.01.11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
@class PongViewController;
@interface PongAppDelegate : NSObject <UIApplicationDelegate> {
UIWindow *window;
PongViewController *viewController;
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet PongViewController *viewController;
@end

View file

@ -0,0 +1,88 @@
//
// PongAppDelegate.m
// Pong
//
// Created by Jeena on 26.01.11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import "PongAppDelegate.h"
#import "PongViewController.h"
@implementation PongAppDelegate
@synthesize window;
@synthesize viewController;
#pragma mark -
#pragma mark Application lifecycle
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
// Add the view controller's view to the window and display.
[self.window addSubview:viewController.view];
[self.window makeKeyAndVisible];
return YES;
}
- (void)applicationWillResignActive:(UIApplication *)application {
/*
Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
*/
}
- (void)applicationDidEnterBackground:(UIApplication *)application {
/*
Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
If your application supports background execution, called instead of applicationWillTerminate: when the user quits.
*/
}
- (void)applicationWillEnterForeground:(UIApplication *)application {
/*
Called as part of transition from the background to the inactive state: here you can undo many of the changes made on entering the background.
*/
}
- (void)applicationDidBecomeActive:(UIApplication *)application {
/*
Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
*/
}
- (void)applicationWillTerminate:(UIApplication *)application {
/*
Called when the application is about to terminate.
See also applicationDidEnterBackground:.
*/
}
#pragma mark -
#pragma mark Memory management
- (void)applicationDidReceiveMemoryWarning:(UIApplication *)application {
/*
Free up as much memory as possible by purging cached data objects that can be recreated (or reloaded from disk) later.
*/
}
- (void)dealloc {
[viewController release];
[window release];
[super dealloc];
}
@end

View file

@ -0,0 +1,50 @@
//
// PongViewController.h
// Pong
//
// Created by Jeena on 26.01.11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "GGSDelegate.h"
#import "GGSNetwork.h"
enum GameType {
kGameTypeSinglePlayer = 0,
kGameTypeMultiPlayer,
kGameTypeNetworkMultiPlayer
};
@interface PongViewController : UIViewController <GGSDelegate> {
IBOutlet UIView *ballView;
IBOutlet UIView *player1View;
IBOutlet UIView *player2View;
IBOutlet UILabel *tapToBegin;
CGPoint ballVelocity;
BOOL gamePaused;
IBOutlet UILabel *pointsP1;
IBOutlet UILabel *pointsP2;
GGSNetwork *ggsNetwork;
}
@property (nonatomic, retain) IBOutlet UIView *ballView;
@property (nonatomic, retain) IBOutlet UIView *player1View;
@property (nonatomic, retain) IBOutlet UIView *player2View;
@property (nonatomic, retain) IBOutlet UIView *tapToBegin;
@property (nonatomic, retain) IBOutlet UILabel *pointsP1;
@property (nonatomic, retain) IBOutlet UILabel *pointsP2;
@property (nonatomic, retain) GGSNetwork *ggsNetwork;
- (void)startPositions;
- (void)zeroPoints;
- (void)moveBall;
- (void)positionPlayer:(CGPoint)point;
@end

View file

@ -0,0 +1,241 @@
//
// PongViewController.m
// Pong
//
// Created by Jeena on 26.01.11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import "PongViewController.h"
#import "GGSNetwork.h"
@implementation PongViewController
#define PLAYER_SPEED 20
#define BALL_SPEED_X 7
#define BALL_SPEED_Y 5
#define INTERVAL 0.05
#define WIDTH 480
#define HEIGHT 320
@synthesize ballView, player1View, player2View, tapToBegin, pointsP1, pointsP2;
/*
// The designated initializer. Override to perform setup that is required before the view is loaded.
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
*/
/*
// Implement loadView to create a view hierarchy programmatically, without using a nib.
- (void)loadView {
[super loadView];
}
*/
#pragma mark -
#pragma mark GGSNetwork Delegate
- (void)GGSNetwork:(GGSNetwork *)ggsNetwork ready:(BOOL)ready {
[ggsNetwork sendCommand:@"nick" withArgs:@"jeena"];
[ggsNetwork sendCommand:@"chat" withArgs:@"Hi everybody I'm pong."];
}
- (void)GGSNetwork:(GGSNetwork *)ggsNetwork defined:(BOOL)defined {
if (defined) {
NSLog(@"Defined");
} else {
NSLog(@"Not defined");
}
}
- (void)GGSNetwork:(GGSNetwork *)ggsNetwork gotCommand:(NSString *)command withArgs:(NSString *)args {
NSLog(@"Command: %@; Args: %@", command, args);
}
#pragma mark -
#pragma mark View
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {
[super viewDidLoad];
ggsNetwork = [[GGSNetwork alloc] initWithDelegate:self];
gamePaused = YES;
[self startPositions];
[NSTimer scheduledTimerWithTimeInterval:0.05 target:self selector:@selector(moveBall) userInfo:nil repeats:YES];
}
-(void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
[self becomeFirstResponder];
}
- (void)viewWillDisappear:(BOOL)animated {
[self resignFirstResponder];
[super viewWillDisappear:animated];
}
// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
- (void)didReceiveMemoryWarning {
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];
// Release any cached data, images, etc that aren't in use.
}
- (void)viewDidUnload {
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}
# pragma mark -
# pragma mark Ball
- (void)moveBall {
if (!gamePaused) {
[UIView beginAnimations:NULL context:NULL];
ballView.center = CGPointMake(ballView.center.x + ballVelocity.x, ballView.center.y + ballVelocity.y );
[UIView commitAnimations];
if (ballView.center.y > HEIGHT || ballView.center.y < 0) {
ballVelocity.y = -ballVelocity.y;
}
if (CGRectIntersectsRect(ballView.frame, player1View.frame) || CGRectIntersectsRect(ballView.frame, player2View.frame)) {
ballVelocity.x = - (ballVelocity.x + 1);
if (arc4random() % 2) {
ballVelocity.y = - (ballVelocity.y + 1);
}
}
if (ballView.center.x > WIDTH || ballView.center.x < 0) {
if (ballView.center.x < 0) {
pointsP1.text = [NSString stringWithFormat:@"%i", [pointsP1.text intValue] + 1];
} else {
pointsP2.text = [NSString stringWithFormat:@"%i", [pointsP2.text intValue] + 1];
}
gamePaused = YES;
[self startPositions];
}
} else {
tapToBegin.hidden = NO;
}
}
# pragma mark -
# pragma mark Positioning
- (void)startPositions {
int s1 = - (arc4random() % 5);
int s2 = - (arc4random() % 5);
int d1 = arc4random() % 2 ? -1 : 1;
int d2 = arc4random() % 2 ? -1 : 1;
ballVelocity = CGPointMake((BALL_SPEED_X + s1) * d1 , (BALL_SPEED_Y + s2) * d2);
ballView.center = CGPointMake(WIDTH/2, HEIGHT/2);
player1View.center = CGPointMake(30, HEIGHT/2);
player2View.center = CGPointMake(WIDTH-30, HEIGHT/2);
}
- (void)positionPlayer:(CGPoint)point {
UIView *p;
NSInteger direction = 0;
if (point.x < WIDTH/2) {
p = player1View;
} else {
p = player2View;
}
if (point.y > HEIGHT/2 && p.frame.origin.y + p.frame.size.height < HEIGHT) {
direction = 1;
} else if (point.y < HEIGHT/2 && p.frame.origin.y > 0) {
direction = -1;
} else {
direction = 0;
}
CGRect f = p.frame;
f.origin.y = f.origin.y + (PLAYER_SPEED * direction);
[UIView beginAnimations:NULL context:NULL];
p.frame = f;
[UIView commitAnimations];
}
#pragma mark -
#pragma mark Input
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
if (gamePaused) {
tapToBegin.hidden = YES;
gamePaused = NO;
} else {
switch ([touches count]) {
case 1:
[self positionPlayer:[[[touches allObjects] objectAtIndex:0] locationInView:self.view]];
break;
default:
[self positionPlayer:[[[touches allObjects] objectAtIndex:0] locationInView:self.view]];
[self positionPlayer:[[[touches allObjects] objectAtIndex:1] locationInView:self.view]];
break;
}
}
}
# pragma mark -
# pragma mark Reset
-(BOOL)canBecomeFirstResponder {
return YES;
}
- (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event {
if (event.type == UIEventSubtypeMotionShake) {
[self zeroPoints];
}
}
- (void)zeroPoints {
pointsP1.text = @"0";
pointsP2.text = @"0";
}
# pragma mark -
# pragma mark Dealloc
- (void)dealloc {
[ballView release];
[player1View release];
[player2View release];
[tapToBegin release];
[pointsP1 release];
[pointsP2 release];
[ggsNetwork release];
[super dealloc];
}
@end

444
games/Pong/MainWindow.xib Normal file
View file

@ -0,0 +1,444 @@
<?xml version="1.0" encoding="UTF-8"?>
<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.10">
<data>
<int key="IBDocument.SystemTarget">1024</int>
<string key="IBDocument.SystemVersion">10D571</string>
<string key="IBDocument.InterfaceBuilderVersion">786</string>
<string key="IBDocument.AppKitVersion">1038.29</string>
<string key="IBDocument.HIToolboxVersion">460.00</string>
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
<string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
<string key="NS.object.0">112</string>
</object>
<object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
<bool key="EncodedWithXMLCoder">YES</bool>
<integer value="10"/>
</object>
<object class="NSArray" key="IBDocument.PluginDependencies">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</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>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
</object>
</object>
<object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBProxyObject" id="841351856">
<string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
</object>
<object class="IBProxyObject" id="427554174">
<string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
</object>
<object class="IBUICustomObject" id="664661524">
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
</object>
<object class="IBUIViewController" id="943309135">
<string key="IBUINibName">PongViewController</string>
<object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics"/>
<object class="IBUISimulatedOrientationMetrics" key="IBUISimulatedOrientationMetrics">
<int key="interfaceOrientation">1</int>
</object>
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
<bool key="IBUIHorizontal">NO</bool>
</object>
<object class="IBUIWindow" id="117978783">
<nil key="NSNextResponder"/>
<int key="NSvFlags">292</int>
<string key="NSFrameSize">{320, 480}</string>
<object class="NSColor" key="IBUIBackgroundColor">
<int key="NSColorSpace">1</int>
<bytes key="NSRGB">MSAxIDEAA</bytes>
</object>
<bool key="IBUIOpaque">NO</bool>
<bool key="IBUIClearsContextBeforeDrawing">NO</bool>
<object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics"/>
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
<bool key="IBUIResizesToFullScreen">YES</bool>
</object>
</object>
<object class="IBObjectContainer" key="IBDocument.Objects">
<object class="NSMutableArray" key="connectionRecords">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBConnectionRecord">
<object class="IBCocoaTouchOutletConnection" key="connection">
<string key="label">delegate</string>
<reference key="source" ref="841351856"/>
<reference key="destination" ref="664661524"/>
</object>
<int key="connectionID">4</int>
</object>
<object class="IBConnectionRecord">
<object class="IBCocoaTouchOutletConnection" key="connection">
<string key="label">viewController</string>
<reference key="source" ref="664661524"/>
<reference key="destination" ref="943309135"/>
</object>
<int key="connectionID">11</int>
</object>
<object class="IBConnectionRecord">
<object class="IBCocoaTouchOutletConnection" key="connection">
<string key="label">window</string>
<reference key="source" ref="664661524"/>
<reference key="destination" ref="117978783"/>
</object>
<int key="connectionID">14</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"/>
<reference key="children" ref="1000"/>
<nil key="parent"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">-1</int>
<reference key="object" ref="841351856"/>
<reference key="parent" ref="0"/>
<string key="objectName">File's Owner</string>
</object>
<object class="IBObjectRecord">
<int key="objectID">3</int>
<reference key="object" ref="664661524"/>
<reference key="parent" ref="0"/>
<string key="objectName">Pong App Delegate</string>
</object>
<object class="IBObjectRecord">
<int key="objectID">-2</int>
<reference key="object" ref="427554174"/>
<reference key="parent" ref="0"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">10</int>
<reference key="object" ref="943309135"/>
<reference key="parent" ref="0"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">12</int>
<reference key="object" ref="117978783"/>
<reference key="parent" ref="0"/>
</object>
</object>
</object>
<object class="NSMutableDictionary" key="flattenedProperties">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>-1.CustomClassName</string>
<string>-2.CustomClassName</string>
<string>10.CustomClassName</string>
<string>10.IBEditorWindowLastContentRect</string>
<string>10.IBPluginDependency</string>
<string>12.IBEditorWindowLastContentRect</string>
<string>12.IBPluginDependency</string>
<string>3.CustomClassName</string>
<string>3.IBPluginDependency</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>UIApplication</string>
<string>UIResponder</string>
<string>PongViewController</string>
<string>{{234, 376}, {320, 480}}</string>
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
<string>{{525, 346}, {320, 480}}</string>
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
<string>PongAppDelegate</string>
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
</object>
</object>
<object class="NSMutableDictionary" key="unlocalizedProperties">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference key="dict.sortedKeys" ref="0"/>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
</object>
</object>
<nil key="activeLocalization"/>
<object class="NSMutableDictionary" key="localizations">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference key="dict.sortedKeys" ref="0"/>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
</object>
</object>
<nil key="sourceID"/>
<int key="maxID">15</int>
</object>
<object class="IBClassDescriber" key="IBDocument.Classes">
<object class="NSMutableArray" key="referencedPartialClassDescriptions">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBPartialClassDescription">
<string key="className">UIWindow</string>
<string key="superclassName">UIView</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBUserSource</string>
<string key="minorKey"/>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">PongAppDelegate</string>
<string key="superclassName">NSObject</string>
<object class="NSMutableDictionary" key="outlets">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>viewController</string>
<string>window</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>PongViewController</string>
<string>UIWindow</string>
</object>
</object>
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>viewController</string>
<string>window</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBToOneOutletInfo">
<string key="name">viewController</string>
<string key="candidateClassName">PongViewController</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">window</string>
<string key="candidateClassName">UIWindow</string>
</object>
</object>
</object>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBProjectSource</string>
<string key="minorKey">Classes/PongAppDelegate.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">PongAppDelegate</string>
<string key="superclassName">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBUserSource</string>
<string key="minorKey"/>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">PongViewController</string>
<string key="superclassName">UIViewController</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBProjectSource</string>
<string key="minorKey">Classes/PongViewController.h</string>
</object>
</object>
</object>
<object class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">Foundation.framework/Headers/NSError.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">Foundation.framework/Headers/NSFileManager.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">Foundation.framework/Headers/NSKeyValueCoding.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">Foundation.framework/Headers/NSKeyValueObserving.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">Foundation.framework/Headers/NSKeyedArchiver.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">Foundation.framework/Headers/NSObject.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">Foundation.framework/Headers/NSRunLoop.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">Foundation.framework/Headers/NSThread.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">Foundation.framework/Headers/NSURL.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">Foundation.framework/Headers/NSURLConnection.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UIAccessibility.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UINibLoading.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier" id="356479594">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UIResponder.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">UIApplication</string>
<string key="superclassName">UIResponder</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UIApplication.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">UIResponder</string>
<string key="superclassName">NSObject</string>
<reference key="sourceIdentifier" ref="356479594"/>
</object>
<object class="IBPartialClassDescription">
<string key="className">UISearchBar</string>
<string key="superclassName">UIView</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UISearchBar.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">UISearchDisplayController</string>
<string key="superclassName">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UISearchDisplayController.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">UIView</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UITextField.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">UIView</string>
<string key="superclassName">UIResponder</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UIView.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">UIViewController</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UINavigationController.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">UIViewController</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UIPopoverController.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">UIViewController</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UISplitViewController.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">UIViewController</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UITabBarController.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">UIViewController</string>
<string key="superclassName">UIResponder</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UIViewController.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">UIWindow</string>
<string key="superclassName">UIView</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UIWindow.h</string>
</object>
</object>
</object>
</object>
<int key="IBDocument.localizationMode">0</int>
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaTouchFramework</string>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
<integer value="1024" key="NS.object.0"/>
</object>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
<integer value="3100" key="NS.object.0"/>
</object>
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
<string key="IBDocument.LastKnownRelativeProjectPath">Pong.xcodeproj</string>
<int key="IBDocument.defaultPropertyAccessControl">3</int>
<string key="IBCocoaTouchPluginVersion">112</string>
</data>
</archive>

View file

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleDisplayName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIconFile</key>
<string></string>
<key>CFBundleIdentifier</key>
<string>net.jeena.apps.pong</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSMainNibFile</key>
<string>MainWindow</string>
<key>UIStatusBarHidden</key>
<true/>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationLandscapeRight</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
</array>
</dict>
</plist>

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,286 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 45;
objects = {
/* Begin PBXBuildFile section */
1D3623260D0F684500981E51 /* PongAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D3623250D0F684500981E51 /* PongAppDelegate.m */; };
1D60589B0D05DD56006BFB54 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; };
1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; };
1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; };
1FBEBF481319FC56006D5497 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FBEBF471319FC56006D5497 /* CFNetwork.framework */; };
1FBEBF4D1319FCDE006D5497 /* AsyncSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FBEBF4C1319FCDE006D5497 /* AsyncSocket.m */; };
1FBEBFEF131A97F8006D5497 /* GGSNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FBEBFEE131A97F8006D5497 /* GGSNetwork.m */; };
288765A50DF7441C002DB57D /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 288765A40DF7441C002DB57D /* CoreGraphics.framework */; };
2899E5220DE3E06400AC0155 /* PongViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2899E5210DE3E06400AC0155 /* PongViewController.xib */; };
28AD733F0D9D9553002E5188 /* MainWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28AD733E0D9D9553002E5188 /* MainWindow.xib */; };
28D7ACF80DDB3853001CB0EB /* PongViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 28D7ACF70DDB3853001CB0EB /* PongViewController.m */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
1D30AB110D05D00D00671497 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
1D3623240D0F684500981E51 /* PongAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PongAppDelegate.h; sourceTree = "<group>"; };
1D3623250D0F684500981E51 /* PongAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PongAppDelegate.m; sourceTree = "<group>"; };
1D6058910D05DD3D006BFB54 /* Pong.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Pong.app; sourceTree = BUILT_PRODUCTS_DIR; };
1DF5F4DF0D08C38300B7A737 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
1FBEBF471319FC56006D5497 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
1FBEBF4B1319FCDE006D5497 /* AsyncSocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AsyncSocket.h; sourceTree = "<group>"; };
1FBEBF4C1319FCDE006D5497 /* AsyncSocket.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AsyncSocket.m; sourceTree = "<group>"; };
1FBEBFED131A97F8006D5497 /* GGSNetwork.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GGSNetwork.h; sourceTree = "<group>"; };
1FBEBFEE131A97F8006D5497 /* GGSNetwork.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GGSNetwork.m; sourceTree = "<group>"; };
1FBEC030131AF83B006D5497 /* GGSDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GGSDelegate.h; sourceTree = "<group>"; };
288765A40DF7441C002DB57D /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
2899E5210DE3E06400AC0155 /* PongViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PongViewController.xib; sourceTree = "<group>"; };
28AD733E0D9D9553002E5188 /* MainWindow.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MainWindow.xib; sourceTree = "<group>"; };
28D7ACF60DDB3853001CB0EB /* PongViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PongViewController.h; sourceTree = "<group>"; };
28D7ACF70DDB3853001CB0EB /* PongViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PongViewController.m; sourceTree = "<group>"; };
29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
32CA4F630368D1EE00C91783 /* Pong_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Pong_Prefix.pch; sourceTree = "<group>"; };
8D1107310486CEB800E47090 /* Pong-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Pong-Info.plist"; plistStructureDefinitionIdentifier = "com.apple.xcode.plist.structure-definition.iphone.info-plist"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
1D60588F0D05DD3D006BFB54 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */,
1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */,
288765A50DF7441C002DB57D /* CoreGraphics.framework in Frameworks */,
1FBEBF481319FC56006D5497 /* CFNetwork.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
080E96DDFE201D6D7F000001 /* Classes */ = {
isa = PBXGroup;
children = (
1FBEBF4B1319FCDE006D5497 /* AsyncSocket.h */,
1FBEBF4C1319FCDE006D5497 /* AsyncSocket.m */,
1FA0569C12F0B528003F1373 /* Views */,
1D3623240D0F684500981E51 /* PongAppDelegate.h */,
1D3623250D0F684500981E51 /* PongAppDelegate.m */,
28D7ACF60DDB3853001CB0EB /* PongViewController.h */,
28D7ACF70DDB3853001CB0EB /* PongViewController.m */,
1FBEC030131AF83B006D5497 /* GGSDelegate.h */,
1FBEBFED131A97F8006D5497 /* GGSNetwork.h */,
1FBEBFEE131A97F8006D5497 /* GGSNetwork.m */,
);
path = Classes;
sourceTree = "<group>";
};
19C28FACFE9D520D11CA2CBB /* Products */ = {
isa = PBXGroup;
children = (
1D6058910D05DD3D006BFB54 /* Pong.app */,
);
name = Products;
sourceTree = "<group>";
};
1FA0569C12F0B528003F1373 /* Views */ = {
isa = PBXGroup;
children = (
);
name = Views;
sourceTree = "<group>";
};
29B97314FDCFA39411CA2CEA /* CustomTemplate */ = {
isa = PBXGroup;
children = (
080E96DDFE201D6D7F000001 /* Classes */,
29B97315FDCFA39411CA2CEA /* Other Sources */,
29B97317FDCFA39411CA2CEA /* Resources */,
29B97323FDCFA39411CA2CEA /* Frameworks */,
19C28FACFE9D520D11CA2CBB /* Products */,
);
name = CustomTemplate;
sourceTree = "<group>";
};
29B97315FDCFA39411CA2CEA /* Other Sources */ = {
isa = PBXGroup;
children = (
32CA4F630368D1EE00C91783 /* Pong_Prefix.pch */,
29B97316FDCFA39411CA2CEA /* main.m */,
);
name = "Other Sources";
sourceTree = "<group>";
};
29B97317FDCFA39411CA2CEA /* Resources */ = {
isa = PBXGroup;
children = (
2899E5210DE3E06400AC0155 /* PongViewController.xib */,
28AD733E0D9D9553002E5188 /* MainWindow.xib */,
8D1107310486CEB800E47090 /* Pong-Info.plist */,
);
name = Resources;
sourceTree = "<group>";
};
29B97323FDCFA39411CA2CEA /* Frameworks */ = {
isa = PBXGroup;
children = (
1DF5F4DF0D08C38300B7A737 /* UIKit.framework */,
1D30AB110D05D00D00671497 /* Foundation.framework */,
288765A40DF7441C002DB57D /* CoreGraphics.framework */,
1FBEBF471319FC56006D5497 /* CFNetwork.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
1D6058900D05DD3D006BFB54 /* Pong */ = {
isa = PBXNativeTarget;
buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "Pong" */;
buildPhases = (
1D60588D0D05DD3D006BFB54 /* Resources */,
1D60588E0D05DD3D006BFB54 /* Sources */,
1D60588F0D05DD3D006BFB54 /* Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = Pong;
productName = Pong;
productReference = 1D6058910D05DD3D006BFB54 /* Pong.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
29B97313FDCFA39411CA2CEA /* Project object */ = {
isa = PBXProject;
buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Pong" */;
compatibilityVersion = "Xcode 3.1";
developmentRegion = English;
hasScannedForEncodings = 1;
knownRegions = (
English,
Japanese,
French,
German,
);
mainGroup = 29B97314FDCFA39411CA2CEA /* CustomTemplate */;
projectDirPath = "";
projectRoot = "";
targets = (
1D6058900D05DD3D006BFB54 /* Pong */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
1D60588D0D05DD3D006BFB54 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
28AD733F0D9D9553002E5188 /* MainWindow.xib in Resources */,
2899E5220DE3E06400AC0155 /* PongViewController.xib in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
1D60588E0D05DD3D006BFB54 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
1D60589B0D05DD56006BFB54 /* main.m in Sources */,
1D3623260D0F684500981E51 /* PongAppDelegate.m in Sources */,
28D7ACF80DDB3853001CB0EB /* PongViewController.m in Sources */,
1FBEBF4D1319FCDE006D5497 /* AsyncSocket.m in Sources */,
1FBEBFEF131A97F8006D5497 /* GGSNetwork.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin XCBuildConfiguration section */
1D6058940D05DD3E006BFB54 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = Pong_Prefix.pch;
INFOPLIST_FILE = "Pong-Info.plist";
PRODUCT_NAME = Pong;
};
name = Debug;
};
1D6058950D05DD3E006BFB54 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
COPY_PHASE_STRIP = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = Pong_Prefix.pch;
INFOPLIST_FILE = "Pong-Info.plist";
PRODUCT_NAME = Pong;
VALIDATE_PRODUCT = YES;
};
name = Release;
};
C01FCF4F08A954540054247B /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer: Richard Pannek (G62Q88N36M)";
GCC_C_LANGUAGE_STANDARD = c99;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 3.0;
PREBINDING = NO;
"PROVISIONING_PROFILE[sdk=iphoneos*]" = "6A9A419F-E593-49FC-98DE-2B027A0982C3";
SDKROOT = iphoneos;
};
name = Debug;
};
C01FCF5008A954540054247B /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
GCC_C_LANGUAGE_STANDARD = c99;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
PREBINDING = NO;
SDKROOT = iphoneos;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "Pong" */ = {
isa = XCConfigurationList;
buildConfigurations = (
1D6058940D05DD3E006BFB54 /* Debug */,
1D6058950D05DD3E006BFB54 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Pong" */ = {
isa = XCConfigurationList;
buildConfigurations = (
C01FCF4F08A954540054247B /* Debug */,
C01FCF5008A954540054247B /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 29B97313FDCFA39411CA2CEA /* Project object */;
}

View file

@ -0,0 +1,635 @@
<?xml version="1.0" encoding="UTF-8"?>
<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.10">
<data>
<int key="IBDocument.SystemTarget">1056</int>
<string key="IBDocument.SystemVersion">10J567</string>
<string key="IBDocument.InterfaceBuilderVersion">823</string>
<string key="IBDocument.AppKitVersion">1038.35</string>
<string key="IBDocument.HIToolboxVersion">462.00</string>
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
<string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
<string key="NS.object.0">132</string>
</object>
<object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
<bool key="EncodedWithXMLCoder">YES</bool>
<integer value="6"/>
</object>
<object class="NSArray" key="IBDocument.PluginDependencies">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</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>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
</object>
</object>
<object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBProxyObject" id="372490531">
<string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
</object>
<object class="IBProxyObject" id="843779117">
<string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
</object>
<object class="IBUIView" id="774585933">
<reference key="NSNextResponder"/>
<int key="NSvFlags">301</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBUIView" id="228194198">
<reference key="NSNextResponder" ref="774585933"/>
<int key="NSvFlags">260</int>
<string key="NSFrame">{{20, 99}, {20, 90}}</string>
<reference key="NSSuperview" ref="774585933"/>
<object class="NSColor" key="IBUIBackgroundColor">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MQA</bytes>
<object class="NSColorSpace" key="NSCustomColorSpace" id="369936712">
<int key="NSID">2</int>
</object>
</object>
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
</object>
<object class="IBUIView" id="915866746">
<reference key="NSNextResponder" ref="774585933"/>
<int key="NSvFlags">256</int>
<string key="NSFrame">{{221, 135}, {20, 20}}</string>
<reference key="NSSuperview" ref="774585933"/>
<object class="NSColor" key="IBUIBackgroundColor">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MQA</bytes>
<reference key="NSCustomColorSpace" ref="369936712"/>
</object>
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
</object>
<object class="IBUIView" id="504982683">
<reference key="NSNextResponder" ref="774585933"/>
<int key="NSvFlags">260</int>
<string key="NSFrame">{{440, 99}, {20, 90}}</string>
<reference key="NSSuperview" ref="774585933"/>
<object class="NSColor" key="IBUIBackgroundColor">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MQA</bytes>
<reference key="NSCustomColorSpace" ref="369936712"/>
</object>
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
</object>
<object class="IBUILabel" id="21349180">
<reference key="NSNextResponder" ref="774585933"/>
<int key="NSvFlags">301</int>
<string key="NSFrame">{{129, 227}, {203, 43}}</string>
<reference key="NSSuperview" ref="774585933"/>
<bool key="IBUIOpaque">NO</bool>
<bool key="IBUIClipsSubviews">YES</bool>
<int key="IBUIContentMode">7</int>
<bool key="IBUIUserInteractionEnabled">NO</bool>
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
<string key="IBUIText">Tap to begin</string>
<object class="NSFont" key="IBUIFont">
<string key="NSName">Helvetica</string>
<double key="NSSize">36</double>
<int key="NSfFlags">16</int>
</object>
<object class="NSColor" key="IBUITextColor" id="492430979">
<int key="NSColorSpace">1</int>
<bytes key="NSRGB">MCAwIDAAA</bytes>
</object>
<object class="NSColor" key="IBUIHighlightedColor" id="533962776">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MQA</bytes>
</object>
<object class="NSColor" key="IBUIShadowColor">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MC42NjY2NjY2NjY3AA</bytes>
</object>
<string key="IBUIShadowOffset">{2, 1}</string>
<int key="IBUIBaselineAdjustment">1</int>
<float key="IBUIMinimumFontSize">10</float>
</object>
<object class="IBUILabel" id="532396815">
<reference key="NSNextResponder" ref="774585933"/>
<int key="NSvFlags">292</int>
<string key="NSFrame">{{86, 20}, {42, 21}}</string>
<reference key="NSSuperview" ref="774585933"/>
<bool key="IBUIOpaque">NO</bool>
<bool key="IBUIClipsSubviews">YES</bool>
<int key="IBUIContentMode">7</int>
<bool key="IBUIUserInteractionEnabled">NO</bool>
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
<string key="IBUIText">0</string>
<reference key="IBUITextColor" ref="492430979"/>
<reference key="IBUIHighlightedColor" ref="533962776"/>
<int key="IBUIBaselineAdjustment">1</int>
<float key="IBUIMinimumFontSize">10</float>
<int key="IBUITextAlignment">2</int>
</object>
<object class="IBUILabel" id="738971272">
<reference key="NSNextResponder" ref="774585933"/>
<int key="NSvFlags">292</int>
<string key="NSFrame">{{340, 20}, {42, 21}}</string>
<reference key="NSSuperview" ref="774585933"/>
<bool key="IBUIOpaque">NO</bool>
<bool key="IBUIClipsSubviews">YES</bool>
<int key="IBUIContentMode">7</int>
<bool key="IBUIUserInteractionEnabled">NO</bool>
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
<string key="IBUIText">0</string>
<reference key="IBUITextColor" ref="492430979"/>
<reference key="IBUIHighlightedColor" ref="533962776"/>
<int key="IBUIBaselineAdjustment">1</int>
<float key="IBUIMinimumFontSize">10</float>
</object>
</object>
<string key="NSFrameSize">{480, 300}</string>
<reference key="NSSuperview"/>
<object class="NSColor" key="IBUIBackgroundColor">
<int key="NSColorSpace">2</int>
<bytes key="NSRGB">MCAwLjg5NDExNzcxMyAwLjA2Mjc0NTEwMTc1AA</bytes>
</object>
<bool key="IBUIClearsContextBeforeDrawing">NO</bool>
<bool key="IBUIMultipleTouchEnabled">YES</bool>
<object class="IBUISimulatedOrientationMetrics" key="IBUISimulatedOrientationMetrics">
<int key="interfaceOrientation">3</int>
</object>
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
</object>
</object>
<object class="IBObjectContainer" key="IBDocument.Objects">
<object class="NSMutableArray" key="connectionRecords">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBConnectionRecord">
<object class="IBCocoaTouchOutletConnection" key="connection">
<string key="label">view</string>
<reference key="source" ref="372490531"/>
<reference key="destination" ref="774585933"/>
</object>
<int key="connectionID">29</int>
</object>
<object class="IBConnectionRecord">
<object class="IBCocoaTouchOutletConnection" key="connection">
<string key="label">tapToBegin</string>
<reference key="source" ref="372490531"/>
<reference key="destination" ref="21349180"/>
</object>
<int key="connectionID">30</int>
</object>
<object class="IBConnectionRecord">
<object class="IBCocoaTouchOutletConnection" key="connection">
<string key="label">pointsP2</string>
<reference key="source" ref="372490531"/>
<reference key="destination" ref="738971272"/>
</object>
<int key="connectionID">31</int>
</object>
<object class="IBConnectionRecord">
<object class="IBCocoaTouchOutletConnection" key="connection">
<string key="label">pointsP1</string>
<reference key="source" ref="372490531"/>
<reference key="destination" ref="532396815"/>
</object>
<int key="connectionID">32</int>
</object>
<object class="IBConnectionRecord">
<object class="IBCocoaTouchOutletConnection" key="connection">
<string key="label">player2View</string>
<reference key="source" ref="372490531"/>
<reference key="destination" ref="504982683"/>
</object>
<int key="connectionID">33</int>
</object>
<object class="IBConnectionRecord">
<object class="IBCocoaTouchOutletConnection" key="connection">
<string key="label">player1View</string>
<reference key="source" ref="372490531"/>
<reference key="destination" ref="228194198"/>
</object>
<int key="connectionID">34</int>
</object>
<object class="IBConnectionRecord">
<object class="IBCocoaTouchOutletConnection" key="connection">
<string key="label">ballView</string>
<reference key="source" ref="372490531"/>
<reference key="destination" ref="915866746"/>
</object>
<int key="connectionID">35</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"/>
<reference key="children" ref="1000"/>
<nil key="parent"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">-1</int>
<reference key="object" ref="372490531"/>
<reference key="parent" ref="0"/>
<string key="objectName">File's Owner</string>
</object>
<object class="IBObjectRecord">
<int key="objectID">-2</int>
<reference key="object" ref="843779117"/>
<reference key="parent" ref="0"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">6</int>
<reference key="object" ref="774585933"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="915866746"/>
<reference ref="228194198"/>
<reference ref="504982683"/>
<reference ref="532396815"/>
<reference ref="738971272"/>
<reference ref="21349180"/>
</object>
<reference key="parent" ref="0"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">8</int>
<reference key="object" ref="228194198"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
</object>
<reference key="parent" ref="774585933"/>
<string key="objectName">Player1</string>
</object>
<object class="IBObjectRecord">
<int key="objectID">9</int>
<reference key="object" ref="504982683"/>
<reference key="parent" ref="774585933"/>
<string key="objectName">Player2</string>
</object>
<object class="IBObjectRecord">
<int key="objectID">10</int>
<reference key="object" ref="915866746"/>
<reference key="parent" ref="774585933"/>
<string key="objectName">Ball</string>
</object>
<object class="IBObjectRecord">
<int key="objectID">20</int>
<reference key="object" ref="21349180"/>
<reference key="parent" ref="774585933"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">22</int>
<reference key="object" ref="532396815"/>
<reference key="parent" ref="774585933"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">23</int>
<reference key="object" ref="738971272"/>
<reference key="parent" ref="774585933"/>
</object>
</object>
</object>
<object class="NSMutableDictionary" key="flattenedProperties">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>-1.CustomClassName</string>
<string>-2.CustomClassName</string>
<string>10.IBPluginDependency</string>
<string>10.IBViewBoundsToFrameTransform</string>
<string>20.IBPluginDependency</string>
<string>20.IBViewBoundsToFrameTransform</string>
<string>22.IBPluginDependency</string>
<string>22.IBViewBoundsToFrameTransform</string>
<string>23.IBPluginDependency</string>
<string>23.IBViewBoundsToFrameTransform</string>
<string>6.IBEditorWindowLastContentRect</string>
<string>6.IBPluginDependency</string>
<string>8.IBPluginDependency</string>
<string>8.IBViewBoundsToFrameTransform</string>
<string>9.IBPluginDependency</string>
<string>9.IBViewBoundsToFrameTransform</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>PongViewController</string>
<string>UIResponder</string>
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
<object class="NSAffineTransform">
<bytes key="NSTransformStruct">P4AAAL+AAABDCgAAw2wAAA</bytes>
</object>
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
<object class="NSAffineTransform">
<bytes key="NSTransformStruct">P4AAAL+AAABDAQAAwyQAAA</bytes>
</object>
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
<object class="NSAffineTransform">
<bytes key="NSTransformStruct">AUKsAABBoAAAA</bytes>
</object>
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
<object class="NSAffineTransform">
<bytes key="NSTransformStruct">P4AAAL+AAABCtgAAwjAAAA</bytes>
</object>
<string>{{546, 448}, {480, 300}}</string>
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
<object class="NSAffineTransform">
<bytes key="NSTransformStruct">P4AAAL+AAABBQAAAw4iAAA</bytes>
</object>
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
<object class="NSAffineTransform">
<bytes key="NSTransformStruct">P4AAAL+AAABDOQAAw7GAAA</bytes>
</object>
</object>
</object>
<object class="NSMutableDictionary" key="unlocalizedProperties">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference key="dict.sortedKeys" ref="0"/>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
</object>
</object>
<nil key="activeLocalization"/>
<object class="NSMutableDictionary" key="localizations">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference key="dict.sortedKeys" ref="0"/>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
</object>
</object>
<nil key="sourceID"/>
<int key="maxID">35</int>
</object>
<object class="IBClassDescriber" key="IBDocument.Classes">
<object class="NSMutableArray" key="referencedPartialClassDescriptions">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBPartialClassDescription">
<string key="className">PongViewController</string>
<string key="superclassName">UIViewController</string>
<object class="NSMutableDictionary" key="outlets">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>ballView</string>
<string>player1View</string>
<string>player2View</string>
<string>pointsP1</string>
<string>pointsP2</string>
<string>tapToBegin</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>UIView</string>
<string>UIView</string>
<string>UIView</string>
<string>UILabel</string>
<string>UILabel</string>
<string>UIView</string>
</object>
</object>
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>ballView</string>
<string>player1View</string>
<string>player2View</string>
<string>pointsP1</string>
<string>pointsP2</string>
<string>tapToBegin</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBToOneOutletInfo">
<string key="name">ballView</string>
<string key="candidateClassName">UIView</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">player1View</string>
<string key="candidateClassName">UIView</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">player2View</string>
<string key="candidateClassName">UIView</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">pointsP1</string>
<string key="candidateClassName">UILabel</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">pointsP2</string>
<string key="candidateClassName">UILabel</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">tapToBegin</string>
<string key="candidateClassName">UIView</string>
</object>
</object>
</object>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBProjectSource</string>
<string key="minorKey">Classes/PongViewController.h</string>
</object>
</object>
</object>
<object class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">Foundation.framework/Headers/NSError.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">Foundation.framework/Headers/NSFileManager.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">Foundation.framework/Headers/NSKeyValueCoding.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">Foundation.framework/Headers/NSKeyValueObserving.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">Foundation.framework/Headers/NSKeyedArchiver.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">Foundation.framework/Headers/NSObject.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">Foundation.framework/Headers/NSRunLoop.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">Foundation.framework/Headers/NSThread.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">Foundation.framework/Headers/NSURL.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">Foundation.framework/Headers/NSURLConnection.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UIAccessibility.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UINibLoading.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier" id="844179110">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UIResponder.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">UILabel</string>
<string key="superclassName">UIView</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UILabel.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">UIResponder</string>
<string key="superclassName">NSObject</string>
<reference key="sourceIdentifier" ref="844179110"/>
</object>
<object class="IBPartialClassDescription">
<string key="className">UISearchBar</string>
<string key="superclassName">UIView</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UISearchBar.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">UISearchDisplayController</string>
<string key="superclassName">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UISearchDisplayController.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">UIView</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UIPrintFormatter.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">UIView</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UITextField.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">UIView</string>
<string key="superclassName">UIResponder</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UIView.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">UIViewController</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UINavigationController.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">UIViewController</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UIPopoverController.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">UIViewController</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UISplitViewController.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">UIViewController</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UITabBarController.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">UIViewController</string>
<string key="superclassName">UIResponder</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">UIKit.framework/Headers/UIViewController.h</string>
</object>
</object>
</object>
</object>
<int key="IBDocument.localizationMode">0</int>
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaTouchFramework</string>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
<integer value="1056" key="NS.object.0"/>
</object>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
<integer value="3100" key="NS.object.0"/>
</object>
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
<string key="IBDocument.LastKnownRelativeProjectPath">Pong.xcodeproj</string>
<int key="IBDocument.defaultPropertyAccessControl">3</int>
<string key="IBCocoaTouchPluginVersion">132</string>
</data>
</archive>

View file

@ -0,0 +1,8 @@
//
// Prefix header for all source files of the 'Pong' target in the 'Pong' project
//
#ifdef __OBJC__
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#endif

View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleIdentifier</key>
<string>com.apple.xcode.dsym.net.jeena.apps.pong</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>dSYM</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
</dict>
</plist>

View file

@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>files</key>
<dict>
<key>MainWindow.nib</key>
<data>
AdpjLFoatIDWilIi9PNzfvh5IU8=
</data>
<key>PkgInfo</key>
<data>
n57qDP4tZfLD1rCS43W0B4LQjzE=
</data>
<key>PongViewController.nib</key>
<data>
a2sktrUGsYaH1QDnZm8fJ+r++xo=
</data>
<key>embedded.mobileprovision</key>
<data>
AVW60ZyDGk5ugV2sUY1oGuuYkHo=
</data>
</dict>
<key>rules</key>
<dict>
<key>.*</key>
<true/>
<key>Info.plist</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>10</real>
</dict>
<key>ResourceRules.plist</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>100</real>
</dict>
</dict>
</dict>
</plist>

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1 @@
APPL????

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>rules</key>
<dict>
<key>.*</key>
<true/>
<key>Info.plist</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>10</real>
</dict>
<key>ResourceRules.plist</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>100</real>
</dict>
</dict>
</dict>
</plist>

View file

@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>files</key>
<dict>
<key>MainWindow.nib</key>
<data>
AdpjLFoatIDWilIi9PNzfvh5IU8=
</data>
<key>PkgInfo</key>
<data>
n57qDP4tZfLD1rCS43W0B4LQjzE=
</data>
<key>PongViewController.nib</key>
<data>
a2sktrUGsYaH1QDnZm8fJ+r++xo=
</data>
<key>embedded.mobileprovision</key>
<data>
AVW60ZyDGk5ugV2sUY1oGuuYkHo=
</data>
</dict>
<key>rules</key>
<dict>
<key>.*</key>
<true/>
<key>Info.plist</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>10</real>
</dict>
<key>ResourceRules.plist</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>100</real>
</dict>
</dict>
</dict>
</plist>

View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleIdentifier</key>
<string>com.apple.xcode.dsym.net.jeena.apps.pong</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>dSYM</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
</dict>
</plist>

Binary file not shown.

View file

@ -0,0 +1 @@
APPL????

Binary file not shown.

View file

@ -0,0 +1,4 @@
/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/main.o
/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongAppDelegate.o
/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongViewController.o
/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongView.o

View file

@ -0,0 +1,4 @@
/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/main.o
/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongAppDelegate.o
/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongViewController.o
/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongView.o

View file

@ -0,0 +1,22 @@
00000000000000000000000000000000 0f42de934b02be27425d80e94e2ce9bb ffffffffffffffffffffffffffffffff 102 /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app.dSYM
89a4e5a739f57aa8e8ea3e15cc5b761f 1f9a1189ae3fb17ac84e38d4d647347e ffffffffffffffffffffffffffffffff 374 /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app
5e4188bca1209e6907167ccba41fdc53 6efcb0abef93d98698d1747a9433770b ffffffffffffffffffffffffffffffff 52796 /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Pong
9346fa5540614c5ec02d34effc152973 f723bf13552213eb405433fcc7271848 ffffffffffffffffffffffffffffffff 24124 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/Pong
79447062259a391fff3ea9691d9fe04e 4360bd9891f9f8c37851d2b182b20d26 ffffffffffffffffffffffffffffffff 24384 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/Pong
4ac30befb750e7aed0b410d6ddc14710 aab16e6b23eea33c6901c5fc0bc388f5 ffffffffffffffffffffffffffffffff 51000 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongView.o
44fb34f96cc33184f223910d4ab9e6a0 addb2d5a42443237eff1bee352eac250 ffffffffffffffffffffffffffffffff 52200 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongView.o
4ac30befb6f84004d0b410d6ddc14557 648d61647e0fcfcc9a4dac32389c7728 ffffffffffffffffffffffffffffffff 37888 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongViewController.o
44fb34f96d6b962ef223910d4ab9e4e7 145a4966e13c87e79092957e658e06ee ffffffffffffffffffffffffffffffff 37916 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongViewController.o
4ac30befb6d1fbe4d0b410d6ddc14b13 28f66a099b5c55692c60ad1fd78da8ce ffffffffffffffffffffffffffffffff 50260 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongAppDelegate.o
44fb34f96d422dcef223910d4ab9eaa3 31730fa90d486574857302c05f33f12a ffffffffffffffffffffffffffffffff 50340 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongAppDelegate.o
4ac30beffa10e689d0b410d6ddc14b75 758c9f53cbb309591f01f03e180b3931 ffffffffffffffffffffffffffffffff 6408 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/main.o
44fb34f9218330a3f223910d4ab9eac5 f1b61bf7c6c59525052e80347504928b ffffffffffffffffffffffffffffffff 6424 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/main.o
718f52da0df5d541d35bd6a744b504ec 55231c5c1fffc0f90abe72c737fda42a ffffffffffffffffffffffffffffffff 412 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong.xcent
00000000000000000000000000000000 ecb4bdc7df410459212fbfa97152a083 ffffffffffffffffffffffffffffffff 7780 /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/embedded.mobileprovision
000000004d4068690000000000001e76 4ac30befb6d1e995d0b410d6ddc15ec2 ffffffffffffffffffffffffffffffff 10467032 /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gosloautgrgfmxgzxskqjoinrwsy/Pong_Prefix.pch.gch
000000004d4068690000000000001e76 44fb34f96d423fbff223910d4ab9ff72 ffffffffffffffffffffffffffffffff 10000088 /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gukmsobkwrnrzghivaszxouymjcr/Pong_Prefix.pch.gch
000000004d69bf230000000000006f2d dc1646b51af74616a28f6d262501014e ffffffffffffffffffffffffffffffff 3735 /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/PongViewController.nib
000000004d407d930000000000004e05 3d22fc710bec9fbd91c7fb5d1545cb92 ffffffffffffffffffffffffffffffff 1675 /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/MainWindow.nib
00000000000000000000000000000000 718f52da0df5d541d35bd6a744b504ec ffffffffffffffffffffffffffffffff 8 /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/PkgInfo
00000000000000000000000000000000 718f52da0df5d541d35bd6a744b504ec ffffffffffffffffffffffffffffffff 926 /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Info.plist
00000000000000000000000000000000 b499dab3b9352205654a1f76bd619630 ffffffffffffffffffffffffffffffff 485 /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/ResourceRules.plist

View file

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>application-identifier</key>
<string>L65268UWZ3.net.jeena.apps.pong</string>
<key>get-task-allow</key>
<true/>
<key>keychain-access-groups</key>
<array>
<string>L65268UWZ3.net.jeena.apps.pong</string>
</array>
</dict>
</plist>

View file

@ -0,0 +1,22 @@
718f52da0df5d541d35bd6a744b504ec 55231c5c1fffc0f90abe72c737fda42a ffffffffffffffffffffffffffffffff 412 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong.xcent
89a4e5a739f558cbe8ea3e15cc5b4da3 1f9a1189ae3fb17ac84e38d4d647347e ffffffffffffffffffffffffffffffff 374 /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app
00000000000000000000000000000000 ecb4bdc7df410459212fbfa97152a083 ffffffffffffffffffffffffffffffff 7780 /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/embedded.mobileprovision
000000004d699d400000000000005491 dc1646b51af74616a28f6d262501014e ffffffffffffffffffffffffffffffff 1966 /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/PongViewController.nib
000000004d407d930000000000004e05 3d22fc710bec9fbd91c7fb5d1545cb92 ffffffffffffffffffffffffffffffff 1675 /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/MainWindow.nib
00000000000000000000000000000000 718f52da0df5d541d35bd6a744b504ec ffffffffffffffffffffffffffffffff 8 /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/PkgInfo
00000000000000000000000000000000 718f52da0df5d541d35bd6a744b504ec ffffffffffffffffffffffffffffffff 926 /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Info.plist
00000000000000000000000000000000 b499dab3b9352205654a1f76bd619630 ffffffffffffffffffffffffffffffff 485 /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/ResourceRules.plist
00000000000000000000000000000000 0f42de934b02be27425d80e94e2ce9bb ffffffffffffffffffffffffffffffff 102 /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app.dSYM
5e4188bca1209e6907167ccba41fdc53 6efcb0abef93d98698d1747a9433770b ffffffffffffffffffffffffffffffff 52068 /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Pong
9346fa5541e0082dc02d34effc1528a9 f723bf13552213eb405433fcc7271848 ffffffffffffffffffffffffffffffff 23396 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/Pong
79447062241b7d6cff3ea9691d9fe194 4360bd9891f9f8c37851d2b182b20d26 ffffffffffffffffffffffffffffffff 23464 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/Pong
4ac30befb750984fd0b410d6ddc14cc6 aab16e6b23eea33c6901c5fc0bc388f5 ffffffffffffffffffffffffffffffff 45424 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongView.o
44fb34f96cc34e65f223910d4ab9ed76 addb2d5a42443237eff1bee352eac250 ffffffffffffffffffffffffffffffff 45924 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongView.o
4ac30befb7509b0dd0b410d6ddc14f5b 648d61647e0fcfcc9a4dac32389c7728 ffffffffffffffffffffffffffffffff 37388 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongViewController.o
44fb34f96cc34d27f223910d4ab9eeeb 145a4966e13c87e79092957e658e06ee ffffffffffffffffffffffffffffffff 37408 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongViewController.o
4ac30befb6f81b7fd0b410d6ddc14b13 28f66a099b5c55692c60ad1fd78da8ce ffffffffffffffffffffffffffffffff 50260 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongAppDelegate.o
44fb34f96d6bcd55f223910d4ab9eaa3 31730fa90d486574857302c05f33f12a ffffffffffffffffffffffffffffffff 50340 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongAppDelegate.o
4ac30beffa10e689d0b410d6ddc14b75 758c9f53cbb309591f01f03e180b3931 ffffffffffffffffffffffffffffffff 6408 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/main.o
44fb34f9218330a3f223910d4ab9eac5 f1b61bf7c6c59525052e80347504928b ffffffffffffffffffffffffffffffff 6424 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/main.o
000000004d4068690000000000001e76 4ac30befb6d1e995d0b410d6ddc15ec2 ffffffffffffffffffffffffffffffff 10467032 /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gosloautgrgfmxgzxskqjoinrwsy/Pong_Prefix.pch.gch
000000004d4068690000000000001e76 44fb34f96d423fbff223910d4ab9ff72 ffffffffffffffffffffffffffffffff 10000088 /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gukmsobkwrnrzghivaszxouymjcr/Pong_Prefix.pch.gch

View file

@ -0,0 +1,502 @@
TPong
v7
r0
t320469393.017794
cCheck dependencies
cCpResource build/Debug-iphoneos/Pong.app/ResourceRules.plist /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/ResourceRules.plist
cProcessInfoPlistFile /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Info.plist Pong-Info.plist
cCompileXIB /Users/jeena/Projects/Pong/MainWindow.xib
cCompileXIB /Users/jeena/Projects/Pong/PongViewController.xib
cProcessPCH /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gukmsobkwrnrzghivaszxouymjcr/Pong_Prefix.pch.gch Pong_Prefix.pch normal armv6 objective-c com.apple.compilers.gcc.4_2
cProcessPCH /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gosloautgrgfmxgzxskqjoinrwsy/Pong_Prefix.pch.gch Pong_Prefix.pch normal armv7 objective-c com.apple.compilers.gcc.4_2
cCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/main.o /Users/jeena/Projects/Pong/main.m normal armv6 objective-c com.apple.compilers.gcc.4_2
cCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongAppDelegate.o /Users/jeena/Projects/Pong/Classes/PongAppDelegate.m normal armv6 objective-c com.apple.compilers.gcc.4_2
cCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongViewController.o /Users/jeena/Projects/Pong/Classes/PongViewController.m normal armv6 objective-c com.apple.compilers.gcc.4_2
cCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongView.o /Users/jeena/Projects/Pong/Classes/PongView.m normal armv6 objective-c com.apple.compilers.gcc.4_2
cCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/main.o /Users/jeena/Projects/Pong/main.m normal armv7 objective-c com.apple.compilers.gcc.4_2
cCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongAppDelegate.o /Users/jeena/Projects/Pong/Classes/PongAppDelegate.m normal armv7 objective-c com.apple.compilers.gcc.4_2
cCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongViewController.o /Users/jeena/Projects/Pong/Classes/PongViewController.m normal armv7 objective-c com.apple.compilers.gcc.4_2
cCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongView.o /Users/jeena/Projects/Pong/Classes/PongView.m normal armv7 objective-c com.apple.compilers.gcc.4_2
cLd /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/Pong normal armv7
cLd /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/Pong normal armv6
cCreateUniversalBinary /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Pong normal "armv6 armv7"
cGenerateDSYMFile /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app.dSYM /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Pong
cProcessProductPackaging "/Users/jeena/Library/MobileDevice/Provisioning Profiles/6A9A419F-E593-49FC-98DE-2B027A0982C3.mobileprovision" /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/embedded.mobileprovision
cTouch /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app
cProcessProductPackaging /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/Entitlements.plist /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong.xcent
cCodeSign /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app
N/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk
c000000004CC7DC9E0000000000000110
t1288166558
s272
N/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/Entitlements.plist
c000000004CB3DFCF00000000000001A7
t1286856655
s423
N/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/ResourceRules.plist
c000000004CB3DFCF00000000000001E5
t1286856655
s485
N/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
c000000004CC10EF500000000003532B0
t1287720693
s3486384
N/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/System/Library/Frameworks/Foundation.framework/Foundation
c000000004CC10F4700000000003E1F20
t1287720775
s4071200
N/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h
c000000004CC10F1C0000000000001466
t1287720732
s5222
N/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h
c000000004CC11AE60000000000000AA1
t1287723750
s2721
N/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/System/Library/Frameworks/UIKit.framework/UIKit
c000000004CC11B750000000000C769F0
t1287723893
s13068784
N/Users/jeena/Library/MobileDevice/Provisioning Profiles/6A9A419F-E593-49FC-98DE-2B027A0982C3.mobileprovision
c000000004D699FBB0000000000001E64
t1298767803
s7780
N/Users/jeena/Projects/Pong/Classes/PongAppDelegate.h
c000000004D407D9300000000000001C7
t1296072083
s455
i<UIKit/UIKit.h>
N/Users/jeena/Projects/Pong/Classes/PongAppDelegate.m
c000000004D69B93F0000000000000A80
t1298774335
s2688
i"PongAppDelegate.h"
i"PongViewController.h"
N/Users/jeena/Projects/Pong/Classes/PongView.h
c000000004D69BEBA0000000000000300
t1298775738
s768
i<UIKit/UIKit.h>
N/Users/jeena/Projects/Pong/Classes/PongView.m
c000000004D69C20E0000000000000E05
t1298776590
s3589
i"PongView.h"
N/Users/jeena/Projects/Pong/Classes/PongViewController.h
c000000004D69BEB400000000000000E0
t1298775732
s224
i<UIKit/UIKit.h>
N/Users/jeena/Projects/Pong/Classes/PongViewController.m
c000000004D69C1F60000000000000603
t1298776566
s1539
i"PongViewController.h"
i"PongView.h"
N/Users/jeena/Projects/Pong/MainWindow.xib
c000000004D407D930000000000004E05
t1296072083
s19973
N/Users/jeena/Projects/Pong/PongViewController.xib
c000000004D69BF230000000000006F2D
t1298775843
s28461
N/Users/jeena/Projects/Pong/Pong_Prefix.pch
c000000004D407D9300000000000000B1
t1296072083
s177
i<Foundation/Foundation.h>
i<UIKit/UIKit.h>
N/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app
t1298776593
s374
N/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app.dSYM
t1298776592
s102
N/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Info.plist
t1298767847
s926
N/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/MainWindow.nib
t1298767847
s1675
N/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/PkgInfo
t1298767847
s8
N/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Pong
t1298776592
s52796
N/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/PongViewController.nib
t1298775897
s3735
N/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/ResourceRules.plist
t1298767847
s485
N/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/embedded.mobileprovision
t1298767848
s7780
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/Pong
t1298776592
s24384
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/Pong.LinkFileList
c000000004D699FE700000000000001A5
t1298767847
s421
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongAppDelegate.o
t1298775813
s50340
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongView.o
t1298776592
s52200
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongViewController.o
t1298776592
s37916
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/main.o
t1298767848
s6424
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/Pong
t1298776592
s24124
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/Pong.LinkFileList
c000000004D699FE700000000000001A5
t1298767847
s421
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongAppDelegate.o
t1298775813
s50260
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongView.o
t1298776592
s51000
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongViewController.o
t1298776592
s37888
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/main.o
t1298767848
s6408
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong.xcent
t1298767848
s412
N/Users/jeena/Projects/Pong/main.m
c000000004D407D930000000000000160
t1296072083
s352
i<UIKit/UIKit.h>
N/var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gosloautgrgfmxgzxskqjoinrwsy/Pong_Prefix.pch.gch
t1298767847
s10467032
N/var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gukmsobkwrnrzghivaszxouymjcr/Pong_Prefix.pch.gch
t1298767847
s10000088
NPong-Info.plist
c000000004D699B7F0000000000000445
t1298766719
s1093
CCheck dependencies
r0
lSLF07#2@18"Check dependencies320469392#320469392#0(0"0(0#1#0"8700022464#0"0#
CCodeSign /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app
s320469392.857553
e320469393.017707
r1
xCodeSign
x/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app
lSLF07#2@38"CodeSign build/Debug-iphoneos/Pong.app320469392#320469393#0(0"0(0#0#56"/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app8697824480#664" cd /Users/jeena/Projects/Pong setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" setenv _CODESIGN_ALLOCATE_ /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/codesign_allocate /usr/bin/codesign -f -s "iPhone Developer: Richard Pannek (G62Q88N36M)" --resource-rules=/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/ResourceRules.plist --entitlements /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong.xcent /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app 0#
CCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongAppDelegate.o /Users/jeena/Projects/Pong/Classes/PongAppDelegate.m normal armv6 objective-c com.apple.compilers.gcc.4_2
s320468613.562330
e320468613.612767
r1
xCompileC
xbuild/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongAppDelegate.o
x/Users/jeena/Projects/Pong/Classes/PongAppDelegate.m
xnormal
xarmv6
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@60"Compile /Users/jeena/Projects/Pong/Classes/PongAppDelegate.m320468613#320468613#0(0"0(0#0#52"/Users/jeena/Projects/Pong/Classes/PongAppDelegate.m8687287424#1639" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch armv6 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk -fvisibility=hidden -gdwarf-2 -mthumb -miphoneos-version-min=3.0 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphoneos -I/Users/jeena/Projects/Pong/build/Debug-iphoneos/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources/armv6 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gukmsobkwrnrzghivaszxouymjcr/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/Classes/PongAppDelegate.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongAppDelegate.o 0#
CCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongView.o /Users/jeena/Projects/Pong/Classes/PongView.m normal armv6 objective-c com.apple.compilers.gcc.4_2
s320469392.687280
e320469392.816000
r1
xCompileC
xbuild/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongView.o
x/Users/jeena/Projects/Pong/Classes/PongView.m
xnormal
xarmv6
xobjective-c
xcom.apple.compilers.gcc.4_2
o/Users/jeena/Projects/Pong/Classes/PongView.m: In function '-[PongView initWithCoder:]':
o/Users/jeena/Projects/Pong/Classes/PongView.m:28: warning: 'PongView' may not respond to '-startPositions'
o/Users/jeena/Projects/Pong/Classes/PongView.m:28: warning: (Messages without a matching method signature
o/Users/jeena/Projects/Pong/Classes/PongView.m:28: warning: will be assumed to return 'id' and accept
o/Users/jeena/Projects/Pong/Classes/PongView.m:28: warning: '...' as arguments.)
o/Users/jeena/Projects/Pong/Classes/PongView.m: In function '-[PongView moveBall]':
o/Users/jeena/Projects/Pong/Classes/PongView.m:71: warning: 'PongView' may not respond to '-startPositions'
o/Users/jeena/Projects/Pong/Classes/PongView.m: At top level:
o/Users/jeena/Projects/Pong/Classes/PongView.m:153: warning: property 'pointsP1' requires method '-pointsP1' to be defined - use @synthesize, @dynamic or provide a method implementation
o/Users/jeena/Projects/Pong/Classes/PongView.m:153: warning: property 'pointsP1' requires the method 'setPointsP1:' to be defined - use @synthesize, @dynamic or provide a method implementation
o/Users/jeena/Projects/Pong/Classes/PongView.m:153: warning: property 'pointsP2' requires method '-pointsP2' to be defined - use @synthesize, @dynamic or provide a method implementation
o/Users/jeena/Projects/Pong/Classes/PongView.m:153: warning: property 'pointsP2' requires the method 'setPointsP2:' to be defined - use @synthesize, @dynamic or provide a method implementation
lSLF07#2@53"Compile /Users/jeena/Projects/Pong/Classes/PongView.m320469392#320469392#0(1487"/Users/jeena/Projects/Pong/Classes/PongView.m: In function '-[PongView initWithCoder:]': /Users/jeena/Projects/Pong/Classes/PongView.m:28: warning: 'PongView' may not respond to '-startPositions' /Users/jeena/Projects/Pong/Classes/PongView.m:28: warning: (Messages without a matching method signature /Users/jeena/Projects/Pong/Classes/PongView.m:28: warning: will be assumed to return 'id' and accept /Users/jeena/Projects/Pong/Classes/PongView.m:28: warning: '...' as arguments.) /Users/jeena/Projects/Pong/Classes/PongView.m: In function '-[PongView moveBall]': /Users/jeena/Projects/Pong/Classes/PongView.m:71: warning: 'PongView' may not respond to '-startPositions' /Users/jeena/Projects/Pong/Classes/PongView.m: At top level: /Users/jeena/Projects/Pong/Classes/PongView.m:153: warning: property 'pointsP1' requires method '-pointsP1' to be defined - use @synthesize, @dynamic or provide a method implementation /Users/jeena/Projects/Pong/Classes/PongView.m:153: warning: property 'pointsP1' requires the method 'setPointsP1:' to be defined - use @synthesize, @dynamic or provide a method implementation /Users/jeena/Projects/Pong/Classes/PongView.m:153: warning: property 'pointsP2' requires method '-pointsP2' to be defined - use @synthesize, @dynamic or provide a method implementation /Users/jeena/Projects/Pong/Classes/PongView.m:153: warning: property 'pointsP2' requires the method 'setPointsP2:' to be defined - use @synthesize, @dynamic or provide a method implementation 8(22@47"'PongView' may not respond to '-startPositions'320469392#89#107#0(6@45"/Users/jeena/Projects/Pong/Classes/PongView.m320469390#28#0#28#0#26"'*' may not respond to '*'0(13@108"(Messages without a matching method signature will be assumed to return 'id' and accept '...' as arguments.)320469392#196#105#0(6@45"/Users/jeena/Projects/Pong/Classes/PongView.m320469390#28#0#28#0#0"0(22@47"'PongView' may not respond to '-startPositions'320469392#565#107#0(6@45"/Users/jeena/Projects/Pong/Classes/PongView.m320469390#71#0#71#0#26"'*' may not respond to '*'0(23@13"At top level:320469392#672#61#0(6@45"/Users/jeena/Projects/Pong/Classes/PongView.m320469390#0#0#0#0#0"0(22@124"Property 'pointsP1' requires method '-pointsP1' to be defined - use @synthesize, @dynamic or provide a method implementation320469392#733#185#0(6@45"/Users/jeena/Projects/Pong/Classes/PongView.m320469390#153#0#153#0#0"0(22@131"Property 'pointsP1' requires the method 'setPointsP1:' to be defined - use @synthesize, @dynamic or provide a method implementation320469392#918#192#0(6@45"/Users/jeena/Projects/Pong/Classes/PongView.m320469390#153#0#153#0#0"0(22@124"Property 'pointsP2' requires method '-pointsP2' to be defined - use @synthesize, @dynamic or provide a method implementation320469392#1110#185#0(6@45"/Users/jeena/Projects/Pong/Classes/PongView.m320469390#153#0#153#0#0"0(22@131"Property 'pointsP2' requires the method 'setPointsP2:' to be defined - use @synthesize, @dynamic or provide a method implementation320469392#1295#192#0(6@45"/Users/jeena/Projects/Pong/Classes/PongView.m320469390#153#0#153#0#0"0(0#0#45"/Users/jeena/Projects/Pong/Classes/PongView.m8700203072#1625" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch armv6 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk -fvisibility=hidden -gdwarf-2 -mthumb -miphoneos-version-min=3.0 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphoneos -I/Users/jeena/Projects/Pong/build/Debug-iphoneos/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources/armv6 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gukmsobkwrnrzghivaszxouymjcr/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/Classes/PongView.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongView.o 0#
CCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongViewController.o /Users/jeena/Projects/Pong/Classes/PongViewController.m normal armv6 objective-c com.apple.compilers.gcc.4_2
s320469392.651677
e320469392.740891
r1
xCompileC
xbuild/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongViewController.o
x/Users/jeena/Projects/Pong/Classes/PongViewController.m
xnormal
xarmv6
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@63"Compile /Users/jeena/Projects/Pong/Classes/PongViewController.m320469392#320469392#0(0"0(0#0#55"/Users/jeena/Projects/Pong/Classes/PongViewController.m8699045408#1645" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch armv6 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk -fvisibility=hidden -gdwarf-2 -mthumb -miphoneos-version-min=3.0 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphoneos -I/Users/jeena/Projects/Pong/build/Debug-iphoneos/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources/armv6 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gukmsobkwrnrzghivaszxouymjcr/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/Classes/PongViewController.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongViewController.o 0#
CCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/main.o /Users/jeena/Projects/Pong/main.m normal armv6 objective-c com.apple.compilers.gcc.4_2
s320460647.962908
e320460648.107719
r1
xCompileC
xbuild/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/main.o
x/Users/jeena/Projects/Pong/main.m
xnormal
xarmv6
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@41"Compile /Users/jeena/Projects/Pong/main.m320460647#320460648#0(0"0(0#0#33"/Users/jeena/Projects/Pong/main.m8626145920#1609" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch armv6 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk -fvisibility=hidden -gdwarf-2 -mthumb -miphoneos-version-min=3.0 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphoneos -I/Users/jeena/Projects/Pong/build/Debug-iphoneos/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources/armv6 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gukmsobkwrnrzghivaszxouymjcr/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/main.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/main.o 0#
CCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongAppDelegate.o /Users/jeena/Projects/Pong/Classes/PongAppDelegate.m normal armv7 objective-c com.apple.compilers.gcc.4_2
s320468613.603601
e320468613.663325
r1
xCompileC
xbuild/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongAppDelegate.o
x/Users/jeena/Projects/Pong/Classes/PongAppDelegate.m
xnormal
xarmv7
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@60"Compile /Users/jeena/Projects/Pong/Classes/PongAppDelegate.m320468613#320468613#0(0"0(0#0#52"/Users/jeena/Projects/Pong/Classes/PongAppDelegate.m8689049920#1639" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch armv7 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk -fvisibility=hidden -gdwarf-2 -mthumb -miphoneos-version-min=3.0 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphoneos -I/Users/jeena/Projects/Pong/build/Debug-iphoneos/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources/armv7 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gosloautgrgfmxgzxskqjoinrwsy/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/Classes/PongAppDelegate.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongAppDelegate.o 0#
CCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongView.o /Users/jeena/Projects/Pong/Classes/PongView.m normal armv7 objective-c com.apple.compilers.gcc.4_2
s320469392.739737
e320469392.807440
r1
xCompileC
xbuild/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongView.o
x/Users/jeena/Projects/Pong/Classes/PongView.m
xnormal
xarmv7
xobjective-c
xcom.apple.compilers.gcc.4_2
o/Users/jeena/Projects/Pong/Classes/PongView.m: In function '-[PongView initWithCoder:]':
o/Users/jeena/Projects/Pong/Classes/PongView.m:28: warning: 'PongView' may not respond to '-startPositions'
o/Users/jeena/Projects/Pong/Classes/PongView.m:28: warning: (Messages without a matching method signature
o/Users/jeena/Projects/Pong/Classes/PongView.m:28: warning: will be assumed to return 'id' and accept
o/Users/jeena/Projects/Pong/Classes/PongView.m:28: warning: '...' as arguments.)
o/Users/jeena/Projects/Pong/Classes/PongView.m: In function '-[PongView moveBall]':
o/Users/jeena/Projects/Pong/Classes/PongView.m:71: warning: 'PongView' may not respond to '-startPositions'
o/Users/jeena/Projects/Pong/Classes/PongView.m: At top level:
o/Users/jeena/Projects/Pong/Classes/PongView.m:153: warning: property 'pointsP1' requires method '-pointsP1' to be defined - use @synthesize, @dynamic or provide a method implementation
o/Users/jeena/Projects/Pong/Classes/PongView.m:153: warning: property 'pointsP1' requires the method 'setPointsP1:' to be defined - use @synthesize, @dynamic or provide a method implementation
o/Users/jeena/Projects/Pong/Classes/PongView.m:153: warning: property 'pointsP2' requires method '-pointsP2' to be defined - use @synthesize, @dynamic or provide a method implementation
o/Users/jeena/Projects/Pong/Classes/PongView.m:153: warning: property 'pointsP2' requires the method 'setPointsP2:' to be defined - use @synthesize, @dynamic or provide a method implementation
lSLF07#2@53"Compile /Users/jeena/Projects/Pong/Classes/PongView.m320469392#320469392#0(1487"/Users/jeena/Projects/Pong/Classes/PongView.m: In function '-[PongView initWithCoder:]': /Users/jeena/Projects/Pong/Classes/PongView.m:28: warning: 'PongView' may not respond to '-startPositions' /Users/jeena/Projects/Pong/Classes/PongView.m:28: warning: (Messages without a matching method signature /Users/jeena/Projects/Pong/Classes/PongView.m:28: warning: will be assumed to return 'id' and accept /Users/jeena/Projects/Pong/Classes/PongView.m:28: warning: '...' as arguments.) /Users/jeena/Projects/Pong/Classes/PongView.m: In function '-[PongView moveBall]': /Users/jeena/Projects/Pong/Classes/PongView.m:71: warning: 'PongView' may not respond to '-startPositions' /Users/jeena/Projects/Pong/Classes/PongView.m: At top level: /Users/jeena/Projects/Pong/Classes/PongView.m:153: warning: property 'pointsP1' requires method '-pointsP1' to be defined - use @synthesize, @dynamic or provide a method implementation /Users/jeena/Projects/Pong/Classes/PongView.m:153: warning: property 'pointsP1' requires the method 'setPointsP1:' to be defined - use @synthesize, @dynamic or provide a method implementation /Users/jeena/Projects/Pong/Classes/PongView.m:153: warning: property 'pointsP2' requires method '-pointsP2' to be defined - use @synthesize, @dynamic or provide a method implementation /Users/jeena/Projects/Pong/Classes/PongView.m:153: warning: property 'pointsP2' requires the method 'setPointsP2:' to be defined - use @synthesize, @dynamic or provide a method implementation 8(22@47"'PongView' may not respond to '-startPositions'320469392#89#107#0(6@45"/Users/jeena/Projects/Pong/Classes/PongView.m320469390#28#0#28#0#26"'*' may not respond to '*'0(13@108"(Messages without a matching method signature will be assumed to return 'id' and accept '...' as arguments.)320469392#196#105#0(6@45"/Users/jeena/Projects/Pong/Classes/PongView.m320469390#28#0#28#0#0"0(22@47"'PongView' may not respond to '-startPositions'320469392#565#107#0(6@45"/Users/jeena/Projects/Pong/Classes/PongView.m320469390#71#0#71#0#26"'*' may not respond to '*'0(23@13"At top level:320469392#672#61#0(6@45"/Users/jeena/Projects/Pong/Classes/PongView.m320469390#0#0#0#0#0"0(22@124"Property 'pointsP1' requires method '-pointsP1' to be defined - use @synthesize, @dynamic or provide a method implementation320469392#733#185#0(6@45"/Users/jeena/Projects/Pong/Classes/PongView.m320469390#153#0#153#0#0"0(22@131"Property 'pointsP1' requires the method 'setPointsP1:' to be defined - use @synthesize, @dynamic or provide a method implementation320469392#918#192#0(6@45"/Users/jeena/Projects/Pong/Classes/PongView.m320469390#153#0#153#0#0"0(22@124"Property 'pointsP2' requires method '-pointsP2' to be defined - use @synthesize, @dynamic or provide a method implementation320469392#1110#185#0(6@45"/Users/jeena/Projects/Pong/Classes/PongView.m320469390#153#0#153#0#0"0(22@131"Property 'pointsP2' requires the method 'setPointsP2:' to be defined - use @synthesize, @dynamic or provide a method implementation320469392#1295#192#0(6@45"/Users/jeena/Projects/Pong/Classes/PongView.m320469390#153#0#153#0#0"0(0#0#45"/Users/jeena/Projects/Pong/Classes/PongView.m8700118784#1625" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch armv7 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk -fvisibility=hidden -gdwarf-2 -mthumb -miphoneos-version-min=3.0 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphoneos -I/Users/jeena/Projects/Pong/build/Debug-iphoneos/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources/armv7 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gosloautgrgfmxgzxskqjoinrwsy/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/Classes/PongView.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongView.o 0#
CCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongViewController.o /Users/jeena/Projects/Pong/Classes/PongViewController.m normal armv7 objective-c com.apple.compilers.gcc.4_2
s320469392.738647
e320469392.788396
r1
xCompileC
xbuild/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongViewController.o
x/Users/jeena/Projects/Pong/Classes/PongViewController.m
xnormal
xarmv7
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@63"Compile /Users/jeena/Projects/Pong/Classes/PongViewController.m320469392#320469392#0(0"0(0#0#55"/Users/jeena/Projects/Pong/Classes/PongViewController.m8699403520#1645" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch armv7 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk -fvisibility=hidden -gdwarf-2 -mthumb -miphoneos-version-min=3.0 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphoneos -I/Users/jeena/Projects/Pong/build/Debug-iphoneos/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources/armv7 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gosloautgrgfmxgzxskqjoinrwsy/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/Classes/PongViewController.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongViewController.o 0#
CCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/main.o /Users/jeena/Projects/Pong/main.m normal armv7 objective-c com.apple.compilers.gcc.4_2
s320460647.965463
e320460648.108976
r1
xCompileC
xbuild/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/main.o
x/Users/jeena/Projects/Pong/main.m
xnormal
xarmv7
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@41"Compile /Users/jeena/Projects/Pong/main.m320460647#320460648#0(0"0(0#0#33"/Users/jeena/Projects/Pong/main.m8615296512#1609" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch armv7 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk -fvisibility=hidden -gdwarf-2 -mthumb -miphoneos-version-min=3.0 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphoneos -I/Users/jeena/Projects/Pong/build/Debug-iphoneos/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources/armv7 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gosloautgrgfmxgzxskqjoinrwsy/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/main.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/main.o 0#
CCompileXIB /Users/jeena/Projects/Pong/MainWindow.xib
s320460647.108356
e320460647.417594
r1
xCompileXIB
x/Users/jeena/Projects/Pong/MainWindow.xib
lSLF07#2@25"CompileXIB MainWindow.xib320460647#320460647#0(0"0(0#0#41"/Users/jeena/Projects/Pong/MainWindow.xib8630338784#580" cd /Users/jeena/Projects/Pong setenv IBC_MINIMUM_COMPATIBILITY_VERSION 3.0 setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/usr/bin/ibtool --errors --warnings --notices --output-format human-readable-text --compile /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/MainWindow.nib /Users/jeena/Projects/Pong/MainWindow.xib --sdk /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk 0#
CCompileXIB /Users/jeena/Projects/Pong/PongViewController.xib
s320468697.485707
e320468697.823419
r1
xCompileXIB
x/Users/jeena/Projects/Pong/PongViewController.xib
lSLF07#2@33"CompileXIB PongViewController.xib320468697#320468697#0(0"0(0#0#49"/Users/jeena/Projects/Pong/PongViewController.xib8687603392#596" cd /Users/jeena/Projects/Pong setenv IBC_MINIMUM_COMPATIBILITY_VERSION 3.0 setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/usr/bin/ibtool --errors --warnings --notices --output-format human-readable-text --compile /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/PongViewController.nib /Users/jeena/Projects/Pong/PongViewController.xib --sdk /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk 0#
CCpResource build/Debug-iphoneos/Pong.app/ResourceRules.plist /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/ResourceRules.plist
s320460647.084951
e320460647.108263
r1
xCpResource
xbuild/Debug-iphoneos/Pong.app/ResourceRules.plist
x/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/ResourceRules.plist
lSLF07#2@94"Copy /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/ResourceRules.plist320460647#320460647#0(0"0(0#0#89"/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/ResourceRules.plist8027754748485782528#544" cd /Users/jeena/Projects/Pong setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/ResourceRules.plist /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app 0#
CCreateUniversalBinary /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Pong normal "armv6 armv7"
s320469392.834881
e320469392.837074
r1
xCreateUniversalBinary
x/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Pong
xnormal
xarmv6 armv7
lSLF07#2@77"CreateUniversalBinary build/Debug-iphoneos/Pong.app/Pong normal "armv6 armv7"320469392#320469392#0(0"0(0#0#38"/Users/jeena/Projects/Pong/armv6 armv78699147296#523" cd /Users/jeena/Projects/Pong setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /usr/bin/lipo -create /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/Pong /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/Pong -output /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Pong 0#
CGenerateDSYMFile /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app.dSYM /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Pong
s320469392.837125
e320469392.855507
r1
xGenerateDSYMFile
x/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app.dSYM
x/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Pong
lSLF07#2@86"GenerateDSYMFile build/Debug-iphoneos/Pong.app.dSYM build/Debug-iphoneos/Pong.app/Pong320469392#320469392#0(0"0(0#0#61"/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Pong8699904896#394" cd /Users/jeena/Projects/Pong setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/usr/bin/dsymutil /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Pong -o /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app.dSYM 0#
CLd /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/Pong normal armv6
s320469392.816061
e320469392.834819
r1
xLd
x/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/Pong
xnormal
xarmv6
lSLF07#2@100"Link /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/Pong320469392#320469392#0(0"0(0#0#0"8698714656#858" cd /Users/jeena/Projects/Pong setenv IPHONEOS_DEPLOYMENT_TARGET 3.0 setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -arch armv6 -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk -L/Users/jeena/Projects/Pong/build/Debug-iphoneos -F/Users/jeena/Projects/Pong/build/Debug-iphoneos -filelist /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/Pong.LinkFileList -dead_strip -miphoneos-version-min=3.0 -framework Foundation -framework UIKit -framework CoreGraphics -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/Pong 0#
CLd /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/Pong normal armv7
s320469392.807515
e320469392.827241
r1
xLd
x/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/Pong
xnormal
xarmv7
lSLF07#2@100"Link /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/Pong320469392#320469392#0(0"0(0#0#0"8699873280#858" cd /Users/jeena/Projects/Pong setenv IPHONEOS_DEPLOYMENT_TARGET 3.0 setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -arch armv7 -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk -L/Users/jeena/Projects/Pong/build/Debug-iphoneos -F/Users/jeena/Projects/Pong/build/Debug-iphoneos -filelist /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/Pong.LinkFileList -dead_strip -miphoneos-version-min=3.0 -framework Foundation -framework UIKit -framework CoreGraphics -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/Pong 0#
CProcessInfoPlistFile /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Info.plist Pong-Info.plist
s320460647.085574
e320460647.098968
r1
xProcessInfoPlistFile
x/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Info.plist
xPong-Info.plist
lSLF07#2@23"Process Pong-Info.plist320460647#320460647#0(0"0(0#0#42"/Users/jeena/Projects/Pong/Pong-Info.plist8624183552#579" cd /Users/jeena/Projects/Pong setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" builtin-infoPlistUtility Pong-Info.plist -genpkginfo /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/PkgInfo -expandbuildsettings -format binary -platform iphoneos -resourcerulesfile /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/ResourceRules.plist -o /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Info.plist 0#
CProcessPCH /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gosloautgrgfmxgzxskqjoinrwsy/Pong_Prefix.pch.gch Pong_Prefix.pch normal armv7 objective-c com.apple.compilers.gcc.4_2
s320460647.421477
e320460647.962835
r1
xProcessPCH
x/var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gosloautgrgfmxgzxskqjoinrwsy/Pong_Prefix.pch.gch
xPong_Prefix.pch
xnormal
xarmv7
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@26"Precompile Pong_Prefix.pch320460647#320460647#0(0"0(0#0#42"/Users/jeena/Projects/Pong/Pong_Prefix.pch8622066880#1522" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -x objective-c-header -arch armv7 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk -fvisibility=hidden -gdwarf-2 -mthumb -miphoneos-version-min=3.0 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphoneos -I/Users/jeena/Projects/Pong/build/Debug-iphoneos/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources/armv7 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources -c /Users/jeena/Projects/Pong/Pong_Prefix.pch -o /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gosloautgrgfmxgzxskqjoinrwsy/Pong_Prefix.pch.gch 0#
CProcessPCH /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gukmsobkwrnrzghivaszxouymjcr/Pong_Prefix.pch.gch Pong_Prefix.pch normal armv6 objective-c com.apple.compilers.gcc.4_2
s320460647.420828
e320460647.936346
r1
xProcessPCH
x/var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gukmsobkwrnrzghivaszxouymjcr/Pong_Prefix.pch.gch
xPong_Prefix.pch
xnormal
xarmv6
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@26"Precompile Pong_Prefix.pch320460647#320460647#0(0"0(0#0#42"/Users/jeena/Projects/Pong/Pong_Prefix.pch8623672672#1522" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -x objective-c-header -arch armv6 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk -fvisibility=hidden -gdwarf-2 -mthumb -miphoneos-version-min=3.0 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphoneos -I/Users/jeena/Projects/Pong/build/Debug-iphoneos/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources/armv6 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources -c /Users/jeena/Projects/Pong/Pong_Prefix.pch -o /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gukmsobkwrnrzghivaszxouymjcr/Pong_Prefix.pch.gch 0#
CProcessProductPackaging "/Users/jeena/Library/MobileDevice/Provisioning Profiles/6A9A419F-E593-49FC-98DE-2B027A0982C3.mobileprovision" /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/embedded.mobileprovision
s320460648.664649
e320460648.665784
r1
xProcessProductPackaging
x/Users/jeena/Library/MobileDevice/Provisioning Profiles/6A9A419F-E593-49FC-98DE-2B027A0982C3.mobileprovision
x/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/embedded.mobileprovision
lSLF07#2@189"ProcessProductPackaging "/Users/jeena/Library/MobileDevice/Provisioning Profiles/6A9A419F-E593-49FC-98DE-2B027A0982C3.mobileprovision" build/Debug-iphoneos/Pong.app/embedded.mobileprovision320460648#320460648#0(0"0(0#0#81"/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/embedded.mobileprovision8617274624#473" cd /Users/jeena/Projects/Pong setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" <com.apple.tools.product-pkg-utility> "/Users/jeena/Library/MobileDevice/Provisioning Profiles/6A9A419F-E593-49FC-98DE-2B027A0982C3.mobileprovision" -o /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/embedded.mobileprovision 0#
CProcessProductPackaging /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/Entitlements.plist /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong.xcent
s320460648.667702
e320460648.765541
r1
xProcessProductPackaging
x/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/Entitlements.plist
x/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong.xcent
lSLF07#2@166"ProcessProductPackaging /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/Entitlements.plist build/Pong.build/Debug-iphoneos/Pong.build/Pong.xcent320460648#320460648#0(0"0(0#0#80"/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong.xcent8613426272#476" cd /Users/jeena/Projects/Pong setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" <com.apple.tools.product-pkg-utility> /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/Entitlements.plist -entitlements -format xml -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong.xcent 0#
CTouch /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app
s320469392.855635
e320469392.857447
r1
xTouch
x/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app
lSLF07#2@62"Touch /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app320469392#320469392#0(0"0(0#0#0"8700259808#314" cd /Users/jeena/Projects/Pong setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /usr/bin/touch -c /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app 0#

View file

@ -0,0 +1,477 @@
TPong
v7
r0
t320460648.969474
cCheck dependencies
cCpResource build/Debug-iphoneos/Pong.app/ResourceRules.plist /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/ResourceRules.plist
cProcessInfoPlistFile /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Info.plist Pong-Info.plist
cCompileXIB /Users/jeena/Projects/Pong/MainWindow.xib
cCompileXIB /Users/jeena/Projects/Pong/PongViewController.xib
cProcessPCH /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gukmsobkwrnrzghivaszxouymjcr/Pong_Prefix.pch.gch Pong_Prefix.pch normal armv6 objective-c com.apple.compilers.gcc.4_2
cProcessPCH /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gosloautgrgfmxgzxskqjoinrwsy/Pong_Prefix.pch.gch Pong_Prefix.pch normal armv7 objective-c com.apple.compilers.gcc.4_2
cCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/main.o /Users/jeena/Projects/Pong/main.m normal armv6 objective-c com.apple.compilers.gcc.4_2
cCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongAppDelegate.o /Users/jeena/Projects/Pong/Classes/PongAppDelegate.m normal armv6 objective-c com.apple.compilers.gcc.4_2
cCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongViewController.o /Users/jeena/Projects/Pong/Classes/PongViewController.m normal armv6 objective-c com.apple.compilers.gcc.4_2
cCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongView.o /Users/jeena/Projects/Pong/Classes/PongView.m normal armv6 objective-c com.apple.compilers.gcc.4_2
cCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/main.o /Users/jeena/Projects/Pong/main.m normal armv7 objective-c com.apple.compilers.gcc.4_2
cCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongAppDelegate.o /Users/jeena/Projects/Pong/Classes/PongAppDelegate.m normal armv7 objective-c com.apple.compilers.gcc.4_2
cCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongViewController.o /Users/jeena/Projects/Pong/Classes/PongViewController.m normal armv7 objective-c com.apple.compilers.gcc.4_2
cCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongView.o /Users/jeena/Projects/Pong/Classes/PongView.m normal armv7 objective-c com.apple.compilers.gcc.4_2
cLd /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/Pong normal armv7
cLd /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/Pong normal armv6
cCreateUniversalBinary /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Pong normal "armv6 armv7"
cGenerateDSYMFile /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app.dSYM /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Pong
cProcessProductPackaging "/Users/jeena/Library/MobileDevice/Provisioning Profiles/6A9A419F-E593-49FC-98DE-2B027A0982C3.mobileprovision" /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/embedded.mobileprovision
cTouch /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app
cProcessProductPackaging /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/Entitlements.plist /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong.xcent
cCodeSign /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app
N/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk
c000000004CC7DC9E0000000000000110
t1288166558
s272
N/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/Entitlements.plist
c000000004CB3DFCF00000000000001A7
t1286856655
s423
N/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/ResourceRules.plist
c000000004CB3DFCF00000000000001E5
t1286856655
s485
N/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
c000000004CC10EF500000000003532B0
t1287720693
s3486384
N/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/System/Library/Frameworks/Foundation.framework/Foundation
c000000004CC10F4700000000003E1F20
t1287720775
s4071200
N/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h
c000000004CC10F1C0000000000001466
t1287720732
s5222
N/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h
c000000004CC11AE60000000000000AA1
t1287723750
s2721
N/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/System/Library/Frameworks/UIKit.framework/UIKit
c000000004CC11B750000000000C769F0
t1287723893
s13068784
N/Users/jeena/Library/MobileDevice/Provisioning Profiles/6A9A419F-E593-49FC-98DE-2B027A0982C3.mobileprovision
c000000004D699FBB0000000000001E64
t1298767803
s7780
N/Users/jeena/Projects/Pong/Classes/PongAppDelegate.h
c000000004D407D9300000000000001C7
t1296072083
s455
i<UIKit/UIKit.h>
N/Users/jeena/Projects/Pong/Classes/PongAppDelegate.m
c000000004D407D930000000000000A80
t1296072083
s2688
i"PongAppDelegate.h"
i"PongViewController.h"
N/Users/jeena/Projects/Pong/Classes/PongView.h
c000000004D699C1900000000000001E9
t1298766873
s489
i<UIKit/UIKit.h>
N/Users/jeena/Projects/Pong/Classes/PongView.m
c000000004D699F4C000000000000073A
t1298767692
s1850
i"PongView.h"
N/Users/jeena/Projects/Pong/Classes/PongViewController.h
c000000004D699A8300000000000000E0
t1298766467
s224
i<UIKit/UIKit.h>
N/Users/jeena/Projects/Pong/Classes/PongViewController.m
c000000004D699A9400000000000005AE
t1298766484
s1454
i"PongViewController.h"
N/Users/jeena/Projects/Pong/MainWindow.xib
c000000004D407D930000000000004E05
t1296072083
s19973
N/Users/jeena/Projects/Pong/PongViewController.xib
c000000004D699D400000000000005491
t1298767168
s21649
N/Users/jeena/Projects/Pong/Pong_Prefix.pch
c000000004D407D9300000000000000B1
t1296072083
s177
i<Foundation/Foundation.h>
i<UIKit/UIKit.h>
N/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app
t1298767848
s374
N/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app.dSYM
t1298767848
s102
N/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Info.plist
t1298767847
s926
N/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/MainWindow.nib
t1298767847
s1675
N/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/PkgInfo
t1298767847
s8
N/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Pong
t1298767848
s52068
N/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/PongViewController.nib
t1298767847
s1966
N/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/ResourceRules.plist
t1298767847
s485
N/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/embedded.mobileprovision
t1298767848
s7780
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/Pong
t1298767848
s23464
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/Pong.LinkFileList
c000000004D699FE700000000000001A5
t1298767847
s421
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongAppDelegate.o
t1298767848
s50340
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongView.o
t1298767848
s45924
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongViewController.o
t1298767848
s37408
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/main.o
t1298767848
s6424
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/Pong
t1298767848
s23396
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/Pong.LinkFileList
c000000004D699FE700000000000001A5
t1298767847
s421
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongAppDelegate.o
t1298767848
s50260
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongView.o
t1298767848
s45424
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongViewController.o
t1298767848
s37388
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/main.o
t1298767848
s6408
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong.xcent
t1298767848
s412
N/Users/jeena/Projects/Pong/main.m
c000000004D407D930000000000000160
t1296072083
s352
i<UIKit/UIKit.h>
N/var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gosloautgrgfmxgzxskqjoinrwsy/Pong_Prefix.pch.gch
t1298767847
s10467032
N/var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gukmsobkwrnrzghivaszxouymjcr/Pong_Prefix.pch.gch
t1298767847
s10000088
NPong-Info.plist
c000000004D699B7F0000000000000445
t1298766719
s1093
CCheck dependencies
r0
lSLF07#2@18"Check dependencies320460647#320460647#0(0"0(0#1#0"8630472128#0"0#
CCodeSign /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app
s320460648.765593
e320460648.969446
r1
xCodeSign
x/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app
lSLF07#2@38"CodeSign build/Debug-iphoneos/Pong.app320460648#320460648#0(0"0(0#0#56"/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app8624671040#664" cd /Users/jeena/Projects/Pong setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" setenv _CODESIGN_ALLOCATE_ /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/codesign_allocate /usr/bin/codesign -f -s "iPhone Developer: Richard Pannek (G62Q88N36M)" --resource-rules=/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/ResourceRules.plist --entitlements /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong.xcent /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app 0#
CCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongAppDelegate.o /Users/jeena/Projects/Pong/Classes/PongAppDelegate.m normal armv6 objective-c com.apple.compilers.gcc.4_2
s320460647.963641
e320460648.119205
r1
xCompileC
xbuild/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongAppDelegate.o
x/Users/jeena/Projects/Pong/Classes/PongAppDelegate.m
xnormal
xarmv6
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@60"Compile /Users/jeena/Projects/Pong/Classes/PongAppDelegate.m320460647#320460648#0(0"0(0#0#52"/Users/jeena/Projects/Pong/Classes/PongAppDelegate.m8624388736#1639" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch armv6 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk -fvisibility=hidden -gdwarf-2 -mthumb -miphoneos-version-min=3.0 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphoneos -I/Users/jeena/Projects/Pong/build/Debug-iphoneos/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources/armv6 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gukmsobkwrnrzghivaszxouymjcr/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/Classes/PongAppDelegate.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongAppDelegate.o 0#
CCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongView.o /Users/jeena/Projects/Pong/Classes/PongView.m normal armv6 objective-c com.apple.compilers.gcc.4_2
s320460647.964859
e320460648.125278
r1
xCompileC
xbuild/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongView.o
x/Users/jeena/Projects/Pong/Classes/PongView.m
xnormal
xarmv6
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@53"Compile /Users/jeena/Projects/Pong/Classes/PongView.m320460647#320460648#0(0"0(0#0#45"/Users/jeena/Projects/Pong/Classes/PongView.m8617038528#1625" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch armv6 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk -fvisibility=hidden -gdwarf-2 -mthumb -miphoneos-version-min=3.0 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphoneos -I/Users/jeena/Projects/Pong/build/Debug-iphoneos/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources/armv6 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gukmsobkwrnrzghivaszxouymjcr/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/Classes/PongView.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongView.o 0#
CCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongViewController.o /Users/jeena/Projects/Pong/Classes/PongViewController.m normal armv6 objective-c com.apple.compilers.gcc.4_2
s320460647.964244
e320460648.113556
r1
xCompileC
xbuild/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongViewController.o
x/Users/jeena/Projects/Pong/Classes/PongViewController.m
xnormal
xarmv6
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@63"Compile /Users/jeena/Projects/Pong/Classes/PongViewController.m320460647#320460648#0(0"0(0#0#55"/Users/jeena/Projects/Pong/Classes/PongViewController.m8621772064#1645" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch armv6 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk -fvisibility=hidden -gdwarf-2 -mthumb -miphoneos-version-min=3.0 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphoneos -I/Users/jeena/Projects/Pong/build/Debug-iphoneos/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources/armv6 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gukmsobkwrnrzghivaszxouymjcr/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/Classes/PongViewController.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/PongViewController.o 0#
CCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/main.o /Users/jeena/Projects/Pong/main.m normal armv6 objective-c com.apple.compilers.gcc.4_2
s320460647.962908
e320460648.107719
r1
xCompileC
xbuild/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/main.o
x/Users/jeena/Projects/Pong/main.m
xnormal
xarmv6
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@41"Compile /Users/jeena/Projects/Pong/main.m320460647#320460648#0(0"0(0#0#33"/Users/jeena/Projects/Pong/main.m8626145920#1609" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch armv6 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk -fvisibility=hidden -gdwarf-2 -mthumb -miphoneos-version-min=3.0 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphoneos -I/Users/jeena/Projects/Pong/build/Debug-iphoneos/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources/armv6 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gukmsobkwrnrzghivaszxouymjcr/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/main.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/main.o 0#
CCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongAppDelegate.o /Users/jeena/Projects/Pong/Classes/PongAppDelegate.m normal armv7 objective-c com.apple.compilers.gcc.4_2
s320460647.966073
e320460648.120333
r1
xCompileC
xbuild/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongAppDelegate.o
x/Users/jeena/Projects/Pong/Classes/PongAppDelegate.m
xnormal
xarmv7
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@60"Compile /Users/jeena/Projects/Pong/Classes/PongAppDelegate.m320460647#320460648#0(0"0(0#0#52"/Users/jeena/Projects/Pong/Classes/PongAppDelegate.m8614640832#1639" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch armv7 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk -fvisibility=hidden -gdwarf-2 -mthumb -miphoneos-version-min=3.0 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphoneos -I/Users/jeena/Projects/Pong/build/Debug-iphoneos/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources/armv7 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gosloautgrgfmxgzxskqjoinrwsy/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/Classes/PongAppDelegate.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongAppDelegate.o 0#
CCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongView.o /Users/jeena/Projects/Pong/Classes/PongView.m normal armv7 objective-c com.apple.compilers.gcc.4_2
s320460647.967790
e320460648.124518
r1
xCompileC
xbuild/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongView.o
x/Users/jeena/Projects/Pong/Classes/PongView.m
xnormal
xarmv7
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@53"Compile /Users/jeena/Projects/Pong/Classes/PongView.m320460647#320460648#0(0"0(0#0#45"/Users/jeena/Projects/Pong/Classes/PongView.m8613627648#1625" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch armv7 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk -fvisibility=hidden -gdwarf-2 -mthumb -miphoneos-version-min=3.0 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphoneos -I/Users/jeena/Projects/Pong/build/Debug-iphoneos/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources/armv7 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gosloautgrgfmxgzxskqjoinrwsy/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/Classes/PongView.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongView.o 0#
CCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongViewController.o /Users/jeena/Projects/Pong/Classes/PongViewController.m normal armv7 objective-c com.apple.compilers.gcc.4_2
s320460647.966920
e320460648.111460
r1
xCompileC
xbuild/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongViewController.o
x/Users/jeena/Projects/Pong/Classes/PongViewController.m
xnormal
xarmv7
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@63"Compile /Users/jeena/Projects/Pong/Classes/PongViewController.m320460647#320460648#0(0"0(0#0#55"/Users/jeena/Projects/Pong/Classes/PongViewController.m8614028928#1645" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch armv7 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk -fvisibility=hidden -gdwarf-2 -mthumb -miphoneos-version-min=3.0 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphoneos -I/Users/jeena/Projects/Pong/build/Debug-iphoneos/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources/armv7 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gosloautgrgfmxgzxskqjoinrwsy/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/Classes/PongViewController.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/PongViewController.o 0#
CCompileC build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/main.o /Users/jeena/Projects/Pong/main.m normal armv7 objective-c com.apple.compilers.gcc.4_2
s320460647.965463
e320460648.108976
r1
xCompileC
xbuild/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/main.o
x/Users/jeena/Projects/Pong/main.m
xnormal
xarmv7
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@41"Compile /Users/jeena/Projects/Pong/main.m320460647#320460648#0(0"0(0#0#33"/Users/jeena/Projects/Pong/main.m8615296512#1609" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch armv7 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk -fvisibility=hidden -gdwarf-2 -mthumb -miphoneos-version-min=3.0 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphoneos -I/Users/jeena/Projects/Pong/build/Debug-iphoneos/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources/armv7 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gosloautgrgfmxgzxskqjoinrwsy/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/main.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/main.o 0#
CCompileXIB /Users/jeena/Projects/Pong/MainWindow.xib
s320460647.108356
e320460647.417594
r1
xCompileXIB
x/Users/jeena/Projects/Pong/MainWindow.xib
lSLF07#2@25"CompileXIB MainWindow.xib320460647#320460647#0(0"0(0#0#41"/Users/jeena/Projects/Pong/MainWindow.xib8630338784#580" cd /Users/jeena/Projects/Pong setenv IBC_MINIMUM_COMPATIBILITY_VERSION 3.0 setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/usr/bin/ibtool --errors --warnings --notices --output-format human-readable-text --compile /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/MainWindow.nib /Users/jeena/Projects/Pong/MainWindow.xib --sdk /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk 0#
CCompileXIB /Users/jeena/Projects/Pong/PongViewController.xib
s320460647.108934
e320460647.420748
r1
xCompileXIB
x/Users/jeena/Projects/Pong/PongViewController.xib
lSLF07#2@33"CompileXIB PongViewController.xib320460647#320460647#0(0"0(0#0#49"/Users/jeena/Projects/Pong/PongViewController.xib8626761312#596" cd /Users/jeena/Projects/Pong setenv IBC_MINIMUM_COMPATIBILITY_VERSION 3.0 setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/usr/bin/ibtool --errors --warnings --notices --output-format human-readable-text --compile /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/PongViewController.nib /Users/jeena/Projects/Pong/PongViewController.xib --sdk /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk 0#
CCpResource build/Debug-iphoneos/Pong.app/ResourceRules.plist /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/ResourceRules.plist
s320460647.084951
e320460647.108263
r1
xCpResource
xbuild/Debug-iphoneos/Pong.app/ResourceRules.plist
x/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/ResourceRules.plist
lSLF07#2@94"Copy /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/ResourceRules.plist320460647#320460647#0(0"0(0#0#89"/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/ResourceRules.plist8027754748485782528#544" cd /Users/jeena/Projects/Pong setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/ResourceRules.plist /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app 0#
CCreateUniversalBinary /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Pong normal "armv6 armv7"
s320460648.437664
e320460648.645956
r1
xCreateUniversalBinary
x/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Pong
xnormal
xarmv6 armv7
lSLF07#2@77"CreateUniversalBinary build/Debug-iphoneos/Pong.app/Pong normal "armv6 armv7"320460648#320460648#0(0"0(0#0#38"/Users/jeena/Projects/Pong/armv6 armv78627110816#523" cd /Users/jeena/Projects/Pong setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /usr/bin/lipo -create /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/Pong /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/Pong -output /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Pong 0#
CGenerateDSYMFile /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app.dSYM /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Pong
s320460648.646093
e320460648.664574
r1
xGenerateDSYMFile
x/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app.dSYM
x/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Pong
lSLF07#2@86"GenerateDSYMFile build/Debug-iphoneos/Pong.app.dSYM build/Debug-iphoneos/Pong.app/Pong320460648#320460648#0(0"0(0#0#61"/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Pong8623600384#394" cd /Users/jeena/Projects/Pong setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/usr/bin/dsymutil /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Pong -o /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app.dSYM 0#
CLd /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/Pong normal armv6
s320460648.125338
e320460648.431083
r1
xLd
x/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/Pong
xnormal
xarmv6
lSLF07#2@100"Link /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/Pong320460648#320460648#0(0"0(0#0#0"8605251296#858" cd /Users/jeena/Projects/Pong setenv IPHONEOS_DEPLOYMENT_TARGET 3.0 setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -arch armv6 -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk -L/Users/jeena/Projects/Pong/build/Debug-iphoneos -F/Users/jeena/Projects/Pong/build/Debug-iphoneos -filelist /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/Pong.LinkFileList -dead_strip -miphoneos-version-min=3.0 -framework Foundation -framework UIKit -framework CoreGraphics -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv6/Pong 0#
CLd /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/Pong normal armv7
s320460648.124583
e320460648.437609
r1
xLd
x/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/Pong
xnormal
xarmv7
lSLF07#2@100"Link /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/Pong320460648#320460648#0(0"0(0#0#0"8612763040#858" cd /Users/jeena/Projects/Pong setenv IPHONEOS_DEPLOYMENT_TARGET 3.0 setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -arch armv7 -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk -L/Users/jeena/Projects/Pong/build/Debug-iphoneos -F/Users/jeena/Projects/Pong/build/Debug-iphoneos -filelist /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/Pong.LinkFileList -dead_strip -miphoneos-version-min=3.0 -framework Foundation -framework UIKit -framework CoreGraphics -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Objects-normal/armv7/Pong 0#
CProcessInfoPlistFile /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Info.plist Pong-Info.plist
s320460647.085574
e320460647.098968
r1
xProcessInfoPlistFile
x/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Info.plist
xPong-Info.plist
lSLF07#2@23"Process Pong-Info.plist320460647#320460647#0(0"0(0#0#42"/Users/jeena/Projects/Pong/Pong-Info.plist8624183552#579" cd /Users/jeena/Projects/Pong setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" builtin-infoPlistUtility Pong-Info.plist -genpkginfo /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/PkgInfo -expandbuildsettings -format binary -platform iphoneos -resourcerulesfile /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/ResourceRules.plist -o /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/Info.plist 0#
CProcessPCH /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gosloautgrgfmxgzxskqjoinrwsy/Pong_Prefix.pch.gch Pong_Prefix.pch normal armv7 objective-c com.apple.compilers.gcc.4_2
s320460647.421477
e320460647.962835
r1
xProcessPCH
x/var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gosloautgrgfmxgzxskqjoinrwsy/Pong_Prefix.pch.gch
xPong_Prefix.pch
xnormal
xarmv7
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@26"Precompile Pong_Prefix.pch320460647#320460647#0(0"0(0#0#42"/Users/jeena/Projects/Pong/Pong_Prefix.pch8622066880#1522" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -x objective-c-header -arch armv7 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk -fvisibility=hidden -gdwarf-2 -mthumb -miphoneos-version-min=3.0 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphoneos -I/Users/jeena/Projects/Pong/build/Debug-iphoneos/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources/armv7 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources -c /Users/jeena/Projects/Pong/Pong_Prefix.pch -o /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gosloautgrgfmxgzxskqjoinrwsy/Pong_Prefix.pch.gch 0#
CProcessPCH /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gukmsobkwrnrzghivaszxouymjcr/Pong_Prefix.pch.gch Pong_Prefix.pch normal armv6 objective-c com.apple.compilers.gcc.4_2
s320460647.420828
e320460647.936346
r1
xProcessPCH
x/var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gukmsobkwrnrzghivaszxouymjcr/Pong_Prefix.pch.gch
xPong_Prefix.pch
xnormal
xarmv6
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@26"Precompile Pong_Prefix.pch320460647#320460647#0(0"0(0#0#42"/Users/jeena/Projects/Pong/Pong_Prefix.pch8623672672#1522" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -x objective-c-header -arch armv6 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk -fvisibility=hidden -gdwarf-2 -mthumb -miphoneos-version-min=3.0 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphoneos -I/Users/jeena/Projects/Pong/build/Debug-iphoneos/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources/armv6 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/DerivedSources -c /Users/jeena/Projects/Pong/Pong_Prefix.pch -o /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-gukmsobkwrnrzghivaszxouymjcr/Pong_Prefix.pch.gch 0#
CProcessProductPackaging "/Users/jeena/Library/MobileDevice/Provisioning Profiles/6A9A419F-E593-49FC-98DE-2B027A0982C3.mobileprovision" /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/embedded.mobileprovision
s320460648.664649
e320460648.665784
r1
xProcessProductPackaging
x/Users/jeena/Library/MobileDevice/Provisioning Profiles/6A9A419F-E593-49FC-98DE-2B027A0982C3.mobileprovision
x/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/embedded.mobileprovision
lSLF07#2@189"ProcessProductPackaging "/Users/jeena/Library/MobileDevice/Provisioning Profiles/6A9A419F-E593-49FC-98DE-2B027A0982C3.mobileprovision" build/Debug-iphoneos/Pong.app/embedded.mobileprovision320460648#320460648#0(0"0(0#0#81"/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/embedded.mobileprovision8617274624#473" cd /Users/jeena/Projects/Pong setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" <com.apple.tools.product-pkg-utility> "/Users/jeena/Library/MobileDevice/Provisioning Profiles/6A9A419F-E593-49FC-98DE-2B027A0982C3.mobileprovision" -o /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app/embedded.mobileprovision 0#
CProcessProductPackaging /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/Entitlements.plist /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong.xcent
s320460648.667702
e320460648.765541
r1
xProcessProductPackaging
x/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/Entitlements.plist
x/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong.xcent
lSLF07#2@166"ProcessProductPackaging /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/Entitlements.plist build/Pong.build/Debug-iphoneos/Pong.build/Pong.xcent320460648#320460648#0(0"0(0#0#80"/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong.xcent8613426272#476" cd /Users/jeena/Projects/Pong setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" <com.apple.tools.product-pkg-utility> /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/Entitlements.plist -entitlements -format xml -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphoneos/Pong.build/Pong.xcent 0#
CTouch /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app
s320460648.665825
e320460648.667651
r1
xTouch
x/Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app
lSLF07#2@62"Touch /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app320460648#320460648#0(0"0(0#0#0"8614781120#314" cd /Users/jeena/Projects/Pong setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /usr/bin/touch -c /Users/jeena/Projects/Pong/build/Debug-iphoneos/Pong.app 0#

View file

@ -0,0 +1,18 @@
/Users/jeena/Projects/Pong/Classes/Network.m:9:23: error: GGSNetwork.h: No such file or directory
/Users/jeena/Projects/Pong/Classes/Network.m:22: warning: cannot find interface declaration for 'GGSNetwork'
/Users/jeena/Projects/Pong/Classes/Network.m:22: error: no declaration of property 'asyncSocket' found in the interface
/Users/jeena/Projects/Pong/Classes/Network.m:22: error: no declaration of property 'delegate' found in the interface
/Users/jeena/Projects/Pong/Classes/Network.m: In function '-[GGSNetwork initWithDelegate:]':
/Users/jeena/Projects/Pong/Classes/Network.m:25: error: no super class declared in @interface for 'GGSNetwork'
/Users/jeena/Projects/Pong/Classes/Network.m:26: error: request for member 'delegate' in something not a structure or union
/Users/jeena/Projects/Pong/Classes/Network.m:27: error: 'asyncSocket' undeclared (first use in this function)
/Users/jeena/Projects/Pong/Classes/Network.m:27: error: (Each undeclared identifier is reported only once
/Users/jeena/Projects/Pong/Classes/Network.m:27: error: for each function it appears in.)
/Users/jeena/Projects/Pong/Classes/Network.m:27: error: 'AsyncSocket' undeclared (first use in this function)
/Users/jeena/Projects/Pong/Classes/Network.m: At top level:
/Users/jeena/Projects/Pong/Classes/Network.m:36: error: expected ')' before 'AsyncSocket'
/Users/jeena/Projects/Pong/Classes/Network.m:40: error: expected ')' before 'AsyncSocket'
/Users/jeena/Projects/Pong/Classes/Network.m: In function '-[GGSNetwork dealloc]':
/Users/jeena/Projects/Pong/Classes/Network.m:50: error: 'asyncSocket' undeclared (first use in this function)
/Users/jeena/Projects/Pong/Classes/Network.m:51: error: 'delegate' undeclared (first use in this function)
/Users/jeena/Projects/Pong/Classes/Network.m:53: error: no super class declared in @interface for 'GGSNetwork'

View file

@ -0,0 +1,5 @@
/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/main.o
/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongAppDelegate.o
/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongViewController.o
/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/AsyncSocket.o
/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/GGSNetwork.o

View file

@ -0,0 +1,16 @@
8917e67a6283fb71cf595fb62d4d3406 56cc2bc71f47b6e8bb506948dc74b267 ffffffffffffffffffffffffffffffff 238 /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app
00000000000000000000000000000000 5c0c6e8a12a675624381db4536989f8d ffffffffffffffffffffffffffffffff 102 /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app.dSYM
e0f14fe68c96c84d1b85c8f21fb334b4 153335991f675b11ea8e3e23b361bdeb ffffffffffffffffffffffffffffffff 153016 /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Pong
c084bed5202717a84f2b8831ee27e0a3 a550299f2340f4c4024a3dbfe9bb777d ffffffffffffffffffffffffffffffff 22364 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/GGSNetwork.o
c084bed526d662b74f2b8831ee2633c5 fd9755552148c4fe07644e32f677df88 ffffffffffffffffffffffffffffffff 220036 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/AsyncSocket.o
c084bed520270c284f2b8831ee27fe4d 5ac6c2ad0bacad5fea32d550c54bcf29 ffffffffffffffffffffffffffffffff 64988 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongViewController.o
c084bed56ccceb584f2b8831ee279f0e 8908036c9e542c5abf46de63f3508cd9 ffffffffffffffffffffffffffffffff 52648 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongAppDelegate.o
c084bed521a552364f2b8831ee27909a ab7c4c383c189b5204f4387dd82a702e ffffffffffffffffffffffffffffffff 6280 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/main.o
000000004d4077d30000000000001e76 c084bed56d6470694f2b8831ee27852d ffffffffffffffffffffffffffffffff 15477968 /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-daqvhjvubgqdzcdaoqocczbyixke/Pong_Prefix.pch.gch
000000004d6ada3e0000000000006d7e cf06479b1d4e98bd5cd78cc97babf282 ffffffffffffffffffffffffffffffff 3576 /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/PongViewController.nib
000000004d407d930000000000004e05 b3d3db9eec16573d628525aefa346ca0 ffffffffffffffffffffffffffffffff 1675 /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/MainWindow.nib
00000000000000000000000000000000 97b9600ea8317fca98d360b45605f5c4 ffffffffffffffffffffffffffffffff 8 /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/PkgInfo
00000000000000000000000000000000 97b9600ea8317fca98d360b45605f5c4 ffffffffffffffffffffffffffffffff 730 /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Info.plist
ffffffffffffffffffffffffffffffff 7ebbd85c40be3a02f4d54ad0b78c48be ffffffffffffffffffffffffffffffff 55136 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongView.o
ffffffffffffffffffffffffffffffff 05c6b675550fa0a805bb848eb98b7631 ffffffffffffffffffffffffffffffff 14792 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/Network.o
000000004d4077d30000000000001e76 2d9f861d7b2324b0485028c3b87499c9 ffffffffffffffffffffffffffffffff 15453392 /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-cvccpgbzzqrzqeehdffzkkoejude/Pong_Prefix.pch.gch

View file

@ -0,0 +1,11 @@
258d0ccd568806565e1149141b3abb9f 56cc2bc71f47b6e8bb506948dc74b267 ffffffffffffffffffffffffffffffff 238 /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app
000000004d407d930000000000001a39 70076419e653eee641bcc3138cd5995c ffffffffffffffffffffffffffffffff 795 /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/PongViewController.nib
000000004d407d930000000000004e05 2e5999a1dd734e5eaf4aa76a3c1e7710 ffffffffffffffffffffffffffffffff 1117 /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/MainWindow.nib
00000000000000000000000000000000 5d5a2b56116497b6be4496d1c5827fd8 ffffffffffffffffffffffffffffffff 8 /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/PkgInfo
00000000000000000000000000000000 5d5a2b56116497b6be4496d1c5827fd8 ffffffffffffffffffffffffffffffff 606 /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Info.plist
00000000000000000000000000000000 5c0c6e8a12a675624381db4536989f8d ffffffffffffffffffffffffffffffff 102 /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app.dSYM
591454b99e25cf03eb7b42dc0975d0a9 22c7a5ccf38d69ed5b9c6fb1a284d146 ffffffffffffffffffffffffffffffff 16840 /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Pong
2d9f861d7aa27b7c485028c3b874886e 939e2dceb687f95b565a22232d83c813 ffffffffffffffffffffffffffffffff 37412 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongViewController.o
2d9f861d7b232ef0485028c3b8748c27 a859c35f5bfe73ad9e3b284a673e505c ffffffffffffffffffffffffffffffff 50700 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongAppDelegate.o
2d9f861d37e206ef485028c3b8748c7e 4f4c3c35453f16ab6b4a6076fbc870b1 ffffffffffffffffffffffffffffffff 6280 /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/main.o
000000004d4077d30000000000001e76 2d9f861d7b2324b0485028c3b87499c9 ffffffffffffffffffffffffffffffff 15453392 /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-cvccpgbzzqrzqeehdffzkkoejude/Pong_Prefix.pch.gch

View file

@ -0,0 +1,445 @@
TPong
v7
r0
t320547922.149869
cCheck dependencies
cProcessInfoPlistFile /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Info.plist Pong-Info.plist
cCompileXIB /Users/jeena/Projects/Pong/MainWindow.xib
cCompileXIB /Users/jeena/Projects/Pong/PongViewController.xib
cProcessPCH /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-daqvhjvubgqdzcdaoqocczbyixke/Pong_Prefix.pch.gch Pong_Prefix.pch normal i386 objective-c com.apple.compilers.gcc.4_2
cCompileC build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/main.o /Users/jeena/Projects/Pong/main.m normal i386 objective-c com.apple.compilers.gcc.4_2
cCompileC build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongAppDelegate.o /Users/jeena/Projects/Pong/Classes/PongAppDelegate.m normal i386 objective-c com.apple.compilers.gcc.4_2
cCompileC build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongViewController.o /Users/jeena/Projects/Pong/Classes/PongViewController.m normal i386 objective-c com.apple.compilers.gcc.4_2
cCompileC build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/AsyncSocket.o /Users/jeena/Projects/Pong/Classes/AsyncSocket.m normal i386 objective-c com.apple.compilers.gcc.4_2
cCompileC build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/GGSNetwork.o /Users/jeena/Projects/Pong/Classes/GGSNetwork.m normal i386 objective-c com.apple.compilers.gcc.4_2
cLd /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Pong normal i386
cGenerateDSYMFile /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app.dSYM /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Pong
cTouch /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app
N/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk
c000000004CC128950000000000000110
t1287727253
s272
N/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk/System/Library/Frameworks/CFNetwork.framework/CFNetwork
c000000004CC1224400000000001C3D40
t1287725636
s1850688
N/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h
c000000004CC1221800000000000004CF
t1287725592
s1231
N/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
c000000004CC12246000000000029B310
t1287725638
s2732816
N/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk/System/Library/Frameworks/Foundation.framework/Foundation
c000000004CC1226D000000000029D5D0
t1287725677
s2741712
N/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h
c000000004CC1225F0000000000001466
t1287725663
s5222
N/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h
c000000004CC1281F0000000000000AA1
t1287727135
s2721
N/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk/System/Library/Frameworks/UIKit.framework/UIKit
c000000004CC12883000000000074D7B0
t1287727235
s7657392
N/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk/usr/include/arpa/inet.h
c000000004CB3E46D0000000000001533
t1286857837
s5427
N/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk/usr/include/netdb.h
c000000004A4181220000000000003057
t1245806882
s12375
N/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk/usr/include/netinet/in.h
c000000004CBFACA90000000000005462
t1287629993
s21602
N/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk/usr/include/sys/socket.h
c000000004CBFACAC0000000000005A69
t1287629996
s23145
N/Users/jeena/Projects/Pong/Classes/AsyncSocket.h
c000000004D69C48E0000000000007535
t1298777230
s30005
i<Foundation/Foundation.h>
N/Users/jeena/Projects/Pong/Classes/AsyncSocket.m
c000000004D69C48E000000000001E66D
t1298777230
s124525
i"AsyncSocket.h"
i<sys/socket.h>
i<netinet/in.h>
i<arpa/inet.h>
i<netdb.h>
i<CFNetwork/CFNetwork.h>
N/Users/jeena/Projects/Pong/Classes/GGSDelegate.h
c000000004D6AED0D00000000000001CB
t1298853133
s459
i<UIKit/UIKit.h>
i"GGSNetwork.h"
N/Users/jeena/Projects/Pong/Classes/GGSNetwork.h
c000000004D6ACD5E00000000000002E7
t1298845022
s743
i<Foundation/Foundation.h>
i"AsyncSocket.h"
i"GGSDelegate.h"
N/Users/jeena/Projects/Pong/Classes/GGSNetwork.m
c000000004D6AF4CF0000000000000DE1
t1298855119
s3553
i"GGSNetwork.h"
N/Users/jeena/Projects/Pong/Classes/Network.h
c000000004D6ABFF4000000000000017B
t1298841588
s379
i<Foundation/Foundation.h>
i"AsyncSocket.h"
N/Users/jeena/Projects/Pong/Classes/Network.m
c000000004D6ABFED00000000000004C3
t1298841581
s1219
i"GGSNetwork.h"
N/Users/jeena/Projects/Pong/Classes/PongAppDelegate.h
c000000004D407D9300000000000001C7
t1296072083
s455
i<UIKit/UIKit.h>
N/Users/jeena/Projects/Pong/Classes/PongAppDelegate.m
c000000004D69B93F0000000000000A80
t1298774335
s2688
i"PongAppDelegate.h"
i"PongViewController.h"
N/Users/jeena/Projects/Pong/Classes/PongView.h
c000000004D6AD42600000000000000C1
t1298846758
s193
i<UIKit/UIKit.h>
N/Users/jeena/Projects/Pong/Classes/PongView.m
c000000004D6AD4990000000000000241
t1298846873
s577
i"PongView.h"
N/Users/jeena/Projects/Pong/Classes/PongViewController.h
c000000004D6AED5C0000000000000478
t1298853212
s1144
i<UIKit/UIKit.h>
i"GGSDelegate.h"
i"GGSNetwork.h"
N/Users/jeena/Projects/Pong/Classes/PongViewController.m
c000000004D6AEF1E00000000000016BC
t1298853662
s5820
i"PongViewController.h"
i"GGSNetwork.h"
N/Users/jeena/Projects/Pong/MainWindow.xib
c000000004D407D930000000000004E05
t1296072083
s19973
N/Users/jeena/Projects/Pong/PongViewController.xib
c000000004D6ADA3E0000000000006D7E
t1298848318
s28030
N/Users/jeena/Projects/Pong/Pong_Prefix.pch
c000000004D407D9300000000000000B1
t1296072083
s177
i<Foundation/Foundation.h>
i<UIKit/UIKit.h>
N/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app
t1298855122
s238
N/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app.dSYM
t1298855122
s102
N/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Info.plist
t1298767882
s730
N/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/MainWindow.nib
t1298767883
s1675
N/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/PkgInfo
t1298767882
s8
N/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Pong
t1298855122
s153016
N/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/PongViewController.nib
t1298848322
s3576
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/AsyncSocket.o
t1298813363
s220036
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/GGSNetwork.o
t1298855122
s22364
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/Network.o
t1298841554
s14792
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/Pong.LinkFileList
c000000004D6AD4F6000000000000022E
t1298846966
s558
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongAppDelegate.o
t1298853311
s52648
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongView.o
t1298846057
s55136
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongViewController.o
t1298853665
s64988
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/main.o
t1298767883
s6280
N/Users/jeena/Projects/Pong/main.m
c000000004D407D930000000000000160
t1296072083
s352
i<UIKit/UIKit.h>
N/var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-cvccpgbzzqrzqeehdffzkkoejude/Pong_Prefix.pch.gch
t1296319395
s15453392
N/var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-daqvhjvubgqdzcdaoqocczbyixke/Pong_Prefix.pch.gch
t1298767883
s15477968
NPong-Info.plist
c000000004D699B7F0000000000000445
t1298766719
s1093
CCheck dependencies
r0
lSLF07#2@18"Check dependencies320547922#320547922#0(0"0(0#1#0"8620273120#0"0#
CCompileC build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/AsyncSocket.o /Users/jeena/Projects/Pong/Classes/AsyncSocket.m normal i386 objective-c com.apple.compilers.gcc.4_2
s320506163.448783
e320506163.895998
r1
xCompileC
xbuild/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/AsyncSocket.o
x/Users/jeena/Projects/Pong/Classes/AsyncSocket.m
xnormal
xi386
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@56"Compile /Users/jeena/Projects/Pong/Classes/AsyncSocket.m320506163#320506163#0(0"0(0#0#48"/Users/jeena/Projects/Pong/Classes/AsyncSocket.m8701333952#1821" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk -fexceptions -fvisibility=hidden -mmacosx-version-min=10.6 -gdwarf-2 -fobjc-abi-version=2 -fobjc-legacy-dispatch -D__IPHONE_OS_VERSION_MIN_REQUIRED=30000 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphonesimulator -I/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources/i386 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-daqvhjvubgqdzcdaoqocczbyixke/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/Classes/AsyncSocket.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/AsyncSocket.o 0#
CCompileC build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/GGSNetwork.o /Users/jeena/Projects/Pong/Classes/GGSNetwork.m normal i386 objective-c com.apple.compilers.gcc.4_2
s320547922.019677
e320547922.108375
r1
xCompileC
xbuild/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/GGSNetwork.o
x/Users/jeena/Projects/Pong/Classes/GGSNetwork.m
xnormal
xi386
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@55"Compile /Users/jeena/Projects/Pong/Classes/GGSNetwork.m320547922#320547922#0(0"0(0#0#47"/Users/jeena/Projects/Pong/Classes/GGSNetwork.m8697032064#1819" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk -fexceptions -fvisibility=hidden -mmacosx-version-min=10.6 -gdwarf-2 -fobjc-abi-version=2 -fobjc-legacy-dispatch -D__IPHONE_OS_VERSION_MIN_REQUIRED=30000 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphonesimulator -I/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources/i386 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-daqvhjvubgqdzcdaoqocczbyixke/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/Classes/GGSNetwork.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/GGSNetwork.o 0#
CCompileC build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/Network.o /Users/jeena/Projects/Pong/Classes/Network.m normal i386 objective-c com.apple.compilers.gcc.4_2
s320534354.402493
e320534354.480753
r1
xCompileC
xbuild/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/Network.o
x/Users/jeena/Projects/Pong/Classes/Network.m
xnormal
xi386
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@52"Compile /Users/jeena/Projects/Pong/Classes/Network.m320534354#320534354#0(0"0(0#0#44"/Users/jeena/Projects/Pong/Classes/Network.m8713127104#1813" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk -fexceptions -fvisibility=hidden -mmacosx-version-min=10.6 -gdwarf-2 -fobjc-abi-version=2 -fobjc-legacy-dispatch -D__IPHONE_OS_VERSION_MIN_REQUIRED=30000 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphonesimulator -I/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources/i386 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-daqvhjvubgqdzcdaoqocczbyixke/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/Classes/Network.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/Network.o 0#
CCompileC build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongAppDelegate.o /Users/jeena/Projects/Pong/Classes/PongAppDelegate.m normal i386 objective-c com.apple.compilers.gcc.4_2
s320546111.577589
e320546111.695174
r1
xCompileC
xbuild/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongAppDelegate.o
x/Users/jeena/Projects/Pong/Classes/PongAppDelegate.m
xnormal
xi386
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@60"Compile /Users/jeena/Projects/Pong/Classes/PongAppDelegate.m320546111#320546111#0(0"0(0#0#52"/Users/jeena/Projects/Pong/Classes/PongAppDelegate.m8615280160#1829" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk -fexceptions -fvisibility=hidden -mmacosx-version-min=10.6 -gdwarf-2 -fobjc-abi-version=2 -fobjc-legacy-dispatch -D__IPHONE_OS_VERSION_MIN_REQUIRED=30000 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphonesimulator -I/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources/i386 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-daqvhjvubgqdzcdaoqocczbyixke/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/Classes/PongAppDelegate.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongAppDelegate.o 0#
CCompileC build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongView.o /Users/jeena/Projects/Pong/Classes/PongView.m normal i386 objective-c com.apple.compilers.gcc.4_2
s320538857.214200
e320538857.289112
r1
xCompileC
xbuild/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongView.o
x/Users/jeena/Projects/Pong/Classes/PongView.m
xnormal
xi386
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@53"Compile /Users/jeena/Projects/Pong/Classes/PongView.m320538857#320538857#0(0"0(0#0#45"/Users/jeena/Projects/Pong/Classes/PongView.m8702108160#1815" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk -fexceptions -fvisibility=hidden -mmacosx-version-min=10.6 -gdwarf-2 -fobjc-abi-version=2 -fobjc-legacy-dispatch -D__IPHONE_OS_VERSION_MIN_REQUIRED=30000 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphonesimulator -I/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources/i386 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-daqvhjvubgqdzcdaoqocczbyixke/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/Classes/PongView.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongView.o 0#
CCompileC build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongViewController.o /Users/jeena/Projects/Pong/Classes/PongViewController.m normal i386 objective-c com.apple.compilers.gcc.4_2
s320546465.378969
e320546465.494968
r1
xCompileC
xbuild/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongViewController.o
x/Users/jeena/Projects/Pong/Classes/PongViewController.m
xnormal
xi386
xobjective-c
xcom.apple.compilers.gcc.4_2
o/Users/jeena/Projects/Pong/Classes/PongViewController.m: In function '-[PongViewController GGSNetwork:ready:]':
o/Users/jeena/Projects/Pong/Classes/PongViewController.m:45: warning: local declaration of 'ggsNetwork' hides instance variable
o/Users/jeena/Projects/Pong/Classes/PongViewController.m:46: warning: local declaration of 'ggsNetwork' hides instance variable
o/Users/jeena/Projects/Pong/Classes/PongViewController.m: At top level:
o/Users/jeena/Projects/Pong/Classes/PongViewController.m:241: warning: property 'ggsNetwork' requires method '-ggsNetwork' to be defined - use @synthesize, @dynamic or provide a method implementation
o/Users/jeena/Projects/Pong/Classes/PongViewController.m:241: warning: property 'ggsNetwork' requires the method 'setGgsNetwork:' to be defined - use @synthesize, @dynamic or provide a method implementation
lSLF07#2@63"Compile /Users/jeena/Projects/Pong/Classes/PongViewController.m320546465#320546465#0(842"/Users/jeena/Projects/Pong/Classes/PongViewController.m: In function '-[PongViewController GGSNetwork:ready:]': /Users/jeena/Projects/Pong/Classes/PongViewController.m:45: warning: local declaration of 'ggsNetwork' hides instance variable /Users/jeena/Projects/Pong/Classes/PongViewController.m:46: warning: local declaration of 'ggsNetwork' hides instance variable /Users/jeena/Projects/Pong/Classes/PongViewController.m: At top level: /Users/jeena/Projects/Pong/Classes/PongViewController.m:241: warning: property 'ggsNetwork' requires method '-ggsNetwork' to be defined - use @synthesize, @dynamic or provide a method implementation /Users/jeena/Projects/Pong/Classes/PongViewController.m:241: warning: property 'ggsNetwork' requires the method 'setGgsNetwork:' to be defined - use @synthesize, @dynamic or provide a method implementation 5(22@57"Local declaration of 'ggsNetwork' hides instance variable320546465#112#127#0(6@55"/Users/jeena/Projects/Pong/Classes/PongViewController.m320546462#45#0#45#0#0"0(22@57"Local declaration of 'ggsNetwork' hides instance variable320546465#239#127#0(6@55"/Users/jeena/Projects/Pong/Classes/PongViewController.m320546462#46#0#46#0#0"0(23@13"At top level:320546465#366#71#0(6@55"/Users/jeena/Projects/Pong/Classes/PongViewController.m320546462#0#0#0#0#0"0(22@128"Property 'ggsNetwork' requires method '-ggsNetwork' to be defined - use @synthesize, @dynamic or provide a method implementation320546465#437#199#0(6@55"/Users/jeena/Projects/Pong/Classes/PongViewController.m320546462#241#0#241#0#0"0(22@135"Property 'ggsNetwork' requires the method 'setGgsNetwork:' to be defined - use @synthesize, @dynamic or provide a method implementation320546465#636#206#0(6@55"/Users/jeena/Projects/Pong/Classes/PongViewController.m320546462#241#0#241#0#0"0(0#0#55"/Users/jeena/Projects/Pong/Classes/PongViewController.m8702176672#1835" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk -fexceptions -fvisibility=hidden -mmacosx-version-min=10.6 -gdwarf-2 -fobjc-abi-version=2 -fobjc-legacy-dispatch -D__IPHONE_OS_VERSION_MIN_REQUIRED=30000 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphonesimulator -I/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources/i386 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-daqvhjvubgqdzcdaoqocczbyixke/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/Classes/PongViewController.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongViewController.o 0#
CCompileC build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/main.o /Users/jeena/Projects/Pong/main.m normal i386 objective-c com.apple.compilers.gcc.4_2
s320460683.547115
e320460683.605167
r1
xCompileC
xbuild/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/main.o
x/Users/jeena/Projects/Pong/main.m
xnormal
xi386
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@41"Compile /Users/jeena/Projects/Pong/main.m320460683#320460683#0(0"0(0#0#33"/Users/jeena/Projects/Pong/main.m8627558368#1799" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk -fexceptions -fvisibility=hidden -mmacosx-version-min=10.6 -gdwarf-2 -fobjc-abi-version=2 -fobjc-legacy-dispatch -D__IPHONE_OS_VERSION_MIN_REQUIRED=30000 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphonesimulator -I/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources/i386 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-daqvhjvubgqdzcdaoqocczbyixke/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/main.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/main.o 0#
CCompileXIB /Users/jeena/Projects/Pong/MainWindow.xib
s320460682.803946
e320460683.114061
r1
xCompileXIB
x/Users/jeena/Projects/Pong/MainWindow.xib
lSLF07#2@25"CompileXIB MainWindow.xib320460682#320460683#0(0"0(0#0#41"/Users/jeena/Projects/Pong/MainWindow.xib8626087712#608" cd /Users/jeena/Projects/Pong setenv IBC_MINIMUM_COMPATIBILITY_VERSION 3.0 setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/usr/bin/ibtool --errors --warnings --notices --output-format human-readable-text --compile /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/MainWindow.nib /Users/jeena/Projects/Pong/MainWindow.xib --sdk /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk 0#
CCompileXIB /Users/jeena/Projects/Pong/PongViewController.xib
s320541122.647972
e320541122.987901
r1
xCompileXIB
x/Users/jeena/Projects/Pong/PongViewController.xib
lSLF07#2@33"CompileXIB PongViewController.xib320541122#320541122#0(0"0(0#0#49"/Users/jeena/Projects/Pong/PongViewController.xib8638250336#624" cd /Users/jeena/Projects/Pong setenv IBC_MINIMUM_COMPATIBILITY_VERSION 3.0 setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/usr/bin/ibtool --errors --warnings --notices --output-format human-readable-text --compile /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/PongViewController.nib /Users/jeena/Projects/Pong/PongViewController.xib --sdk /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk 0#
CGenerateDSYMFile /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app.dSYM /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Pong
s320547922.133159
e320547922.147945
r1
xGenerateDSYMFile
x/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app.dSYM
x/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Pong
lSLF07#2@100"GenerateDSYMFile build/Debug-iphonesimulator/Pong.app.dSYM build/Debug-iphonesimulator/Pong.app/Pong320547922#320547922#0(0"0(0#0#68"/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Pong8715120192#415" cd /Users/jeena/Projects/Pong setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/usr/bin/dsymutil /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Pong -o /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app.dSYM 0#
CLd /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Pong normal i386
s320547922.108442
e320547922.133084
r1
xLd
x/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Pong
xnormal
xi386
lSLF07#2@73"Link /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Pong320547922#320547922#0(0"0(0#0#0"8715172544#923" cd /Users/jeena/Projects/Pong setenv MACOSX_DEPLOYMENT_TARGET 10.6 setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -arch i386 -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk -L/Users/jeena/Projects/Pong/build/Debug-iphonesimulator -F/Users/jeena/Projects/Pong/build/Debug-iphonesimulator -filelist /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/Pong.LinkFileList -mmacosx-version-min=10.6 -Xlinker -objc_abi_version -Xlinker 2 -framework Foundation -framework UIKit -framework CoreGraphics -framework CFNetwork -o /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Pong 0#
CProcessInfoPlistFile /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Info.plist Pong-Info.plist
s320460682.801056
e320460682.803887
r1
xProcessInfoPlistFile
x/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Info.plist
xPong-Info.plist
lSLF07#2@23"Process Pong-Info.plist320460682#320460682#0(0"0(0#0#42"/Users/jeena/Projects/Pong/Pong-Info.plist8626925824#511" cd /Users/jeena/Projects/Pong setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" builtin-infoPlistUtility Pong-Info.plist -genpkginfo /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/PkgInfo -expandbuildsettings -format binary -platform iphonesimulator -o /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Info.plist 0#
CProcessPCH /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-cvccpgbzzqrzqeehdffzkkoejude/Pong_Prefix.pch.gch Pong_Prefix.pch normal i386 objective-c com.apple.compilers.gcc.4_2
s318012194.697806
e318012195.224785
r1
xProcessPCH
x/var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-cvccpgbzzqrzqeehdffzkkoejude/Pong_Prefix.pch.gch
xPong_Prefix.pch
xnormal
xi386
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@26"Precompile Pong_Prefix.pch318012194#318012195#0(0"0(0#0#42"/Users/jeena/Projects/Pong/Pong_Prefix.pch8609309824#1706" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -x objective-c-header -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk -fexceptions -fvisibility=hidden -mmacosx-version-min=10.6 -gdwarf-2 -fobjc-abi-version=2 -fobjc-legacy-dispatch -D__IPHONE_OS_VERSION_MIN_REQUIRED=40200 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphonesimulator -I/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources/i386 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources -c /Users/jeena/Projects/Pong/Pong_Prefix.pch -o /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-cvccpgbzzqrzqeehdffzkkoejude/Pong_Prefix.pch.gch 0#
CProcessPCH /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-daqvhjvubgqdzcdaoqocczbyixke/Pong_Prefix.pch.gch Pong_Prefix.pch normal i386 objective-c com.apple.compilers.gcc.4_2
s320460683.117455
e320460683.547046
r1
xProcessPCH
x/var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-daqvhjvubgqdzcdaoqocczbyixke/Pong_Prefix.pch.gch
xPong_Prefix.pch
xnormal
xi386
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@26"Precompile Pong_Prefix.pch320460683#320460683#0(0"0(0#0#42"/Users/jeena/Projects/Pong/Pong_Prefix.pch8630404672#1706" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -x objective-c-header -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk -fexceptions -fvisibility=hidden -mmacosx-version-min=10.6 -gdwarf-2 -fobjc-abi-version=2 -fobjc-legacy-dispatch -D__IPHONE_OS_VERSION_MIN_REQUIRED=30000 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphonesimulator -I/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources/i386 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources -c /Users/jeena/Projects/Pong/Pong_Prefix.pch -o /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-daqvhjvubgqdzcdaoqocczbyixke/Pong_Prefix.pch.gch 0#
CTouch /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app
s320547922.148144
e320547922.149847
r1
xTouch
x/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app
lSLF07#2@69"Touch /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app320547922#320547922#0(0"0(0#0#0"8715020768#328" cd /Users/jeena/Projects/Pong setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /usr/bin/touch -c /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app 0#

View file

@ -0,0 +1,256 @@
TPong
v7
r0
t318012195.634308
cCheck dependencies
cProcessInfoPlistFile /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Info.plist Pong-Info.plist
cCompileXIB /Users/jeena/Projects/Pong/MainWindow.xib
cCompileXIB /Users/jeena/Projects/Pong/PongViewController.xib
cProcessPCH /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-cvccpgbzzqrzqeehdffzkkoejude/Pong_Prefix.pch.gch Pong_Prefix.pch normal i386 objective-c com.apple.compilers.gcc.4_2
cCompileC build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/main.o /Users/jeena/Projects/Pong/main.m normal i386 objective-c com.apple.compilers.gcc.4_2
cCompileC build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongAppDelegate.o /Users/jeena/Projects/Pong/Classes/PongAppDelegate.m normal i386 objective-c com.apple.compilers.gcc.4_2
cCompileC build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongViewController.o /Users/jeena/Projects/Pong/Classes/PongViewController.m normal i386 objective-c com.apple.compilers.gcc.4_2
cLd /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Pong normal i386
cGenerateDSYMFile /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app.dSYM /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Pong
cTouch /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app
N/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk
c000000004CC128950000000000000110
t1287727253
s272
N/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
c000000004CC12246000000000029B310
t1287725638
s2732816
N/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk/System/Library/Frameworks/Foundation.framework/Foundation
c000000004CC1226D000000000029D5D0
t1287725677
s2741712
N/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h
c000000004CC1225F0000000000001466
t1287725663
s5222
N/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h
c000000004CC1281F0000000000000AA1
t1287727135
s2721
N/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk/System/Library/Frameworks/UIKit.framework/UIKit
c000000004CC12883000000000074D7B0
t1287727235
s7657392
N/Users/jeena/Projects/Pong/Classes/PongAppDelegate.h
c000000004D407D9300000000000001C7
t1296072083
s455
i<UIKit/UIKit.h>
N/Users/jeena/Projects/Pong/Classes/PongAppDelegate.m
c000000004D407D930000000000000A80
t1296072083
s2688
i"PongAppDelegate.h"
i"PongViewController.h"
N/Users/jeena/Projects/Pong/Classes/PongViewController.h
c000000004D407D9300000000000000DF
t1296072083
s223
i<UIKit/UIKit.h>
N/Users/jeena/Projects/Pong/Classes/PongViewController.m
c000000004D407D9300000000000005AF
t1296072083
s1455
i"PongViewController.h"
N/Users/jeena/Projects/Pong/MainWindow.xib
c000000004D407D930000000000004E05
t1296072083
s19973
N/Users/jeena/Projects/Pong/PongViewController.xib
c000000004D407D930000000000001A39
t1296072083
s6713
N/Users/jeena/Projects/Pong/Pong_Prefix.pch
c000000004D407D9300000000000000B1
t1296072083
s177
i<Foundation/Foundation.h>
i<UIKit/UIKit.h>
N/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app
t1296319395
s238
N/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app.dSYM
t1296319395
s102
N/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Info.plist
t1296319394
s606
N/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/MainWindow.nib
t1296319394
s1117
N/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/PkgInfo
t1296319394
s8
N/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Pong
t1296319395
s16840
N/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/PongViewController.nib
t1296319394
s795
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/Pong.LinkFileList
c000000004D4443A20000000000000151
t1296319394
s337
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongAppDelegate.o
t1296319395
s50700
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongViewController.o
t1296319395
s37412
N/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/main.o
t1296319395
s6280
N/Users/jeena/Projects/Pong/main.m
c000000004D407D930000000000000160
t1296072083
s352
i<UIKit/UIKit.h>
N/var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-cvccpgbzzqrzqeehdffzkkoejude/Pong_Prefix.pch.gch
t1296319395
s15453392
NPong-Info.plist
c000000004D4443A000000000000003B4
t1296319392
s948
CCheck dependencies
r0
lSLF07#2@18"Check dependencies318012194#318012194#0(0"0(0#1#0"8247620834010738688#0"0#
CCompileC build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongAppDelegate.o /Users/jeena/Projects/Pong/Classes/PongAppDelegate.m normal i386 objective-c com.apple.compilers.gcc.4_2
s318012195.225562
e318012195.372367
r1
xCompileC
xbuild/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongAppDelegate.o
x/Users/jeena/Projects/Pong/Classes/PongAppDelegate.m
xnormal
xi386
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@60"Compile /Users/jeena/Projects/Pong/Classes/PongAppDelegate.m318012195#318012195#0(0"0(0#0#52"/Users/jeena/Projects/Pong/Classes/PongAppDelegate.m8603119168#1829" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk -fexceptions -fvisibility=hidden -mmacosx-version-min=10.6 -gdwarf-2 -fobjc-abi-version=2 -fobjc-legacy-dispatch -D__IPHONE_OS_VERSION_MIN_REQUIRED=40200 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphonesimulator -I/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources/i386 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-cvccpgbzzqrzqeehdffzkkoejude/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/Classes/PongAppDelegate.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongAppDelegate.o 0#
CCompileC build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongViewController.o /Users/jeena/Projects/Pong/Classes/PongViewController.m normal i386 objective-c com.apple.compilers.gcc.4_2
s318012195.226156
e318012195.370994
r1
xCompileC
xbuild/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongViewController.o
x/Users/jeena/Projects/Pong/Classes/PongViewController.m
xnormal
xi386
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@63"Compile /Users/jeena/Projects/Pong/Classes/PongViewController.m318012195#318012195#0(0"0(0#0#55"/Users/jeena/Projects/Pong/Classes/PongViewController.m8605157632#1835" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk -fexceptions -fvisibility=hidden -mmacosx-version-min=10.6 -gdwarf-2 -fobjc-abi-version=2 -fobjc-legacy-dispatch -D__IPHONE_OS_VERSION_MIN_REQUIRED=40200 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphonesimulator -I/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources/i386 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-cvccpgbzzqrzqeehdffzkkoejude/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/Classes/PongViewController.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/PongViewController.o 0#
CCompileC build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/main.o /Users/jeena/Projects/Pong/main.m normal i386 objective-c com.apple.compilers.gcc.4_2
s318012195.224858
e318012195.362933
r1
xCompileC
xbuild/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/main.o
x/Users/jeena/Projects/Pong/main.m
xnormal
xi386
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@41"Compile /Users/jeena/Projects/Pong/main.m318012195#318012195#0(0"0(0#0#33"/Users/jeena/Projects/Pong/main.m8607991040#1799" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk -fexceptions -fvisibility=hidden -mmacosx-version-min=10.6 -gdwarf-2 -fobjc-abi-version=2 -fobjc-legacy-dispatch -D__IPHONE_OS_VERSION_MIN_REQUIRED=40200 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphonesimulator -I/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources/i386 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-cvccpgbzzqrzqeehdffzkkoejude/Pong_Prefix.pch -c /Users/jeena/Projects/Pong/main.m -o /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/main.o 0#
CCompileXIB /Users/jeena/Projects/Pong/MainWindow.xib
s318012194.391821
e318012194.640624
r1
xCompileXIB
x/Users/jeena/Projects/Pong/MainWindow.xib
lSLF07#2@25"CompileXIB MainWindow.xib318012194#318012194#0(0"0(0#0#41"/Users/jeena/Projects/Pong/MainWindow.xib8608631360#608" cd /Users/jeena/Projects/Pong setenv IBC_MINIMUM_COMPATIBILITY_VERSION 4.2 setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/usr/bin/ibtool --errors --warnings --notices --output-format human-readable-text --compile /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/MainWindow.nib /Users/jeena/Projects/Pong/MainWindow.xib --sdk /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk 0#
CCompileXIB /Users/jeena/Projects/Pong/PongViewController.xib
s318012194.398208
e318012194.697582
r1
xCompileXIB
x/Users/jeena/Projects/Pong/PongViewController.xib
lSLF07#2@33"CompileXIB PongViewController.xib318012194#318012194#0(0"0(0#0#49"/Users/jeena/Projects/Pong/PongViewController.xib8608550432#624" cd /Users/jeena/Projects/Pong setenv IBC_MINIMUM_COMPATIBILITY_VERSION 4.2 setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/usr/bin/ibtool --errors --warnings --notices --output-format human-readable-text --compile /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/PongViewController.nib /Users/jeena/Projects/Pong/PongViewController.xib --sdk /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk 0#
CGenerateDSYMFile /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app.dSYM /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Pong
s318012195.600080
e318012195.632457
r1
xGenerateDSYMFile
x/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app.dSYM
x/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Pong
lSLF07#2@100"GenerateDSYMFile build/Debug-iphonesimulator/Pong.app.dSYM build/Debug-iphonesimulator/Pong.app/Pong318012195#318012195#0(0"0(0#0#68"/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Pong8610862496#415" cd /Users/jeena/Projects/Pong setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/usr/bin/dsymutil /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Pong -o /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app.dSYM 0#
CLd /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Pong normal i386
s318012195.372421
e318012195.600018
r1
xLd
x/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Pong
xnormal
xi386
lSLF07#2@73"Link /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Pong318012195#318012195#0(0"0(0#0#0"8610720896#902" cd /Users/jeena/Projects/Pong setenv MACOSX_DEPLOYMENT_TARGET 10.6 setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -arch i386 -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk -L/Users/jeena/Projects/Pong/build/Debug-iphonesimulator -F/Users/jeena/Projects/Pong/build/Debug-iphonesimulator -filelist /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Objects-normal/i386/Pong.LinkFileList -mmacosx-version-min=10.6 -Xlinker -objc_abi_version -Xlinker 2 -framework Foundation -framework UIKit -framework CoreGraphics -o /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Pong 0#
CProcessInfoPlistFile /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Info.plist Pong-Info.plist
s318012194.377033
e318012194.391760
r1
xProcessInfoPlistFile
x/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Info.plist
xPong-Info.plist
lSLF07#2@23"Process Pong-Info.plist318012194#318012194#0(0"0(0#0#42"/Users/jeena/Projects/Pong/Pong-Info.plist31525678434287664#511" cd /Users/jeena/Projects/Pong setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" builtin-infoPlistUtility Pong-Info.plist -genpkginfo /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/PkgInfo -expandbuildsettings -format binary -platform iphonesimulator -o /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app/Info.plist 0#
CProcessPCH /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-cvccpgbzzqrzqeehdffzkkoejude/Pong_Prefix.pch.gch Pong_Prefix.pch normal i386 objective-c com.apple.compilers.gcc.4_2
s318012194.697806
e318012195.224785
r1
xProcessPCH
x/var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-cvccpgbzzqrzqeehdffzkkoejude/Pong_Prefix.pch.gch
xPong_Prefix.pch
xnormal
xi386
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@26"Precompile Pong_Prefix.pch318012194#318012195#0(0"0(0#0#42"/Users/jeena/Projects/Pong/Pong_Prefix.pch8609309824#1706" cd /Users/jeena/Projects/Pong setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -x objective-c-header -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk -fexceptions -fvisibility=hidden -mmacosx-version-min=10.6 -gdwarf-2 -fobjc-abi-version=2 -fobjc-legacy-dispatch -D__IPHONE_OS_VERSION_MIN_REQUIRED=40200 -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-generated-files.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-own-target-headers.hmap -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-all-target-headers.hmap -iquote /Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/Pong-project-headers.hmap -F/Users/jeena/Projects/Pong/build/Debug-iphonesimulator -I/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/include -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources/i386 -I/Users/jeena/Projects/Pong/build/Pong.build/Debug-iphonesimulator/Pong.build/DerivedSources -c /Users/jeena/Projects/Pong/Pong_Prefix.pch -o /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/Pong_Prefix-cvccpgbzzqrzqeehdffzkkoejude/Pong_Prefix.pch.gch 0#
CTouch /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app
s318012195.632505
e318012195.634223
r1
xTouch
x/Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app
lSLF07#2@69"Touch /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app318012195#318012195#0(0"0(0#0#0"8609101664#328" cd /Users/jeena/Projects/Pong setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin" /usr/bin/touch -c /Users/jeena/Projects/Pong/build/Debug-iphonesimulator/Pong.app 0#

17
games/Pong/main.m Normal file
View file

@ -0,0 +1,17 @@
//
// main.m
// Pong
//
// Created by Jeena on 26.01.11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;
}