Search Results

3
votes

When to call self.myObject vs just calling myObject in Objective-C

Hrm, I cannot say that I agree with Mark or Cinder6. Well, I agree in the first part. :-) self.foo is invoking the -foo method. Plain foo is accessi …
1
vote

Facebook connectivity.

Take a look at http://wiki.developers.facebook.com/index.php/Facebook_Connect_for_iPhone and a …
4
votes

TTPickerTextField DataSource? How do I create my own DataSource?

This is just from looking at the headers, but TTPickerTextField is a subclass of TTSearchTextField, which has this property: @property(nonatomic,retain) id<TTTableViewDataSource& …
1
vote

NSArray with C types?

This is a multipart answer. In the end, the answer for you is going to be "you can do this". (1) NSArray cannot handle general C types. If you're interested in this kind of thing, CFArray …
2
votes

Examples of interpreters embedded in iPhone Applications?

There's Nu. Nu is a Lisp-on-ObjC-runtime thing. The link above is to information on iPhone embedding. The langua …