Re: kern/locks.h

2009-04-07 Thread Barry Fawthrop
Michael Dautermann wrote: >> I'm working on a project for the iPhone >> >> original it was c++ based and has the following lines >> >> #include >> #include >> >> It comes back with >> No such file or directory >> >> Yet I have >> Library/Frameworks/Kernel.framework/Versions/A/Headers/kern/lock

kern/locks.h

2009-04-07 Thread Barry Fawthrop
Greetings I'm working on a project for the iPhone original it was c++ based and has the following lines #include #include It comes back with No such file or directory Yet I have Library/Frameworks/Kernel.framework/Versions/A/Headers/kern/locks.h Library/Frameworks/Kernel.framework/Versions/

Update UITextField

2009-04-02 Thread Barry Fawthrop
Trying to Update a UITextField from a c function I have a UITextField on the Window in controller.h IBOutlet UITextField *username; I have a c function getName(); in controller.m Collect linked to NSButton -(IBAction)Collect:(id)sender { ... ... getName(); ... } void get

Network Errors

2009-03-31 Thread Barry Fawthrop
Writing an app for the iPhone (1) In tracing the packet from my app using wireshark I see that all UDP packets sent from app to server has UDP checksum error. Why would this be ? How to adrress this ? (2) sending a packet it bombs out on the recvmsg(socket, msp_p, flags); Previous

Re: Compile Problems

2009-03-12 Thread Barry Fawthrop
> ... > extern const mit_des_cblock mit_des_zeroblock; > #define mit_des_zeroblock krb5int_c_mit_des_zeroblock > I swapped these two lines in des-int.h around #define mit_des_zeroblock krb5int_c_mit_des_zeroblock extern const mit_des_cblock mit_des_zeroblock; Now in f_cbc.mm I have const

Re: Compile Problems

2009-03-11 Thread Barry Fawthrop
I. Savant wrote: > On Wed, Mar 11, 2009 at 12:18 PM, Barry Fawthrop wrote: > >> ... >> I'm getting errors like this >> ... >> Compiling /Users//Desktop//Classes/crypto/enc_provider/des.mm (1 >> errors) >> error: 'krb5int_c_mit_des_ze

Re: iPhone book recommendations

2009-03-11 Thread Barry Fawthrop
Donald Hall wrote: > I'm not sure if this is the most appropriate list for this question, but > here goes: > > Can anyone recommend a good book to get started on iPhone programming? > I've been using Cocoa for several years now, so I don't need a really > basic starter book. I've looked at several

Compile Problems

2009-03-11 Thread Barry Fawthrop
Greetings All I'm trying to build a kerberos based application for the iPhone 2.2.1 I'm getting errors like this ... ... Compiling /Users//Desktop//Classes/crypto/enc_provider/des.mm (1 errors) error: 'krb5int_c_mit_des_zeroblock' was not declared in this scope Compiling /Users//De

Re: Compile errors

2009-02-26 Thread Barry Fawthrop
Greg Parker wrote: > > On Feb 26, 2009, at 10:21 AM, Barry Fawthrop wrote: > >> To All, Greetings >> >> I'm trying to build my first iPhone app which has some Kerberos >> functionality >> >> So I have the files asn1_encode.h and asn1_

Compile errors

2009-02-26 Thread Barry Fawthrop
To All, Greetings I'm trying to build my first iPhone app which has some Kerberos functionality So I have the files asn1_encode.h and asn1_encode.mm, etc... Inside my App control AppController.mm I call the relevant procedures/functions as I need them When I compile I get the following (

Re: NSTableView Problems

2008-11-24 Thread Barry Fawthrop
To All Thank You My main problem was I did not set Identifiers in the IB for the tableColumns So I could not reference each column Having set that and using an NSMutableDictionary helped to get what I was needing. Thank you for your input it sure helped me grasp the concepts Barry Barry

Re: NSTableView Problems

2008-11-23 Thread Barry Fawthrop
Thank You my datasource methods are as follows: -(int) numberOfRowsInTableView:(NsTableView *)table { return [schedule count]; } -(id)talbeview: (NSTableView *)table objectValueForTableColumn: (NSTableColumn *)col: row:(int)row { return [schedule objectAtIndex: row]; } Can/Should I perhap

NSTableView Problems

2008-11-23 Thread Barry Fawthrop
I have added an NSTableView linked it's datasource and deletegate to the Controller object I have the two required procedures I use the following to add data into the Table NSMutableArray *schedule; NSTableView*playlist; NSString *filename; NSString *length; [schedule

Open second Window

2008-11-17 Thread Barry Fawthrop
Greetings All I'm new to Xcode and Apple development I have started my first application and on the main window I have a button, which when pressed I would like it to open a second window. Could someone please point me in the right direction Thank You Barry __