User bobobobo - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T08:42:12Z http://stackoverflow.com/feeds/user/111307 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/170686/best-open-xml-parser-for-c/1824428#1824428 0 Answer by bobobobo for Best open XML parser for C++ bobobobo 2009-12-01T06:51:41Z 2009-12-01T06:51:41Z <p>Nobody said Xerces. Wonder why ;).</p> http://stackoverflow.com/questions/1806248/login-pages-that-expire 0 Login pages that expire bobobobo 2009-11-27T00:20:08Z 2009-11-27T00:22:29Z <p>Some web sites (notably some email clients) have log-in pages that expire (after 2 minutes).</p> <p>What is the reason for login pages that expire?</p> http://stackoverflow.com/questions/1792858/how-do-i-get-the-rootviewcontroller-from-a-pushed-controller 0 How do I get the RootViewController from a pushed controller? bobobobo 2009-11-24T20:54:42Z 2009-11-24T21:10:28Z <p>So, I push a view controller from RootViewController like:</p> <pre> [self.navigationController pushViewController:anotherViewController animated:YES] ; </pre> <p>BUT, FROM <code>anotherViewController</code> now, I want to access the RootViewController again.</p> <p>I'm trying</p> <pre> // (inside anotherViewController now) ///RootViewController *root = (RootViewController*)self.parentViewController ; // No. // err RootViewController *root = (RootViewController*)[self.navigationController.viewControllers objectAtIndex:0] ; // YES!! it works </pre> <p>I'm not sure WHY this works and I'm not sure if its the best way to do it. Can somebody comment on a better way to get the RootViewController from a controller you've pushed into that RootViewController's navigationController and whether or not the way I've done it is reliable or not?</p> http://stackoverflow.com/questions/1790704/difference-between-square-brackets-and-asterisk 5 Difference between [square brackets] and *asterisk bobobobo 2009-11-24T15:13:19Z 2009-11-24T17:19:36Z <p>If you write a C++ function like</p> <pre> void readEmStar( int *arrayOfInt ) { } </pre> <p>vs a C++ function like:</p> <pre> void readEmSquare( int arrayOfInt[] ) { } </pre> <p>What is the difference between using [square brackets] vs *asterisk, and does anyone have a style guide as to which is preferrable, assuming they are equivalent to the compiler?</p> <p>For completeness, an example</p> <pre><code>void readEmStar( int *arrayOfInt, int len ) { for( int i = 0 ; i &lt; len; i++ ) printf( "%d ", arrayOfInt[i] ) ; puts(""); } void readEmSquare( int arrayOfInt[], int len ) { for( int i = 0 ; i &lt; len; i++ ) printf( "%d ", arrayOfInt[i] ) ; puts(""); } int main() { int r[] = { 2, 5, 8, 0, 22, 5 } ; readEmStar( r, 6 ) ; readEmSquare( r, 6 ) ; } </code></pre> http://stackoverflow.com/questions/1788085/how-do-i-get-a-uiviewcontroller-given-a-uitextview 0 How do I get a UIViewController given a UITextView? bobobobo 2009-11-24T05:52:06Z 2009-11-24T06:45:58Z <p>I'm handling code in a UITextViewDelegate. Each function there receives the UITextView instance that received the event, for example:</p> <pre> - (void)textViewDidBeginEditing:(UITextView*)textView { } </pre> <p>Inside that method however, only given the textView, I need to access the UIViewController that contains the textView.</p> <p>Using <code>textView.superview</code> (even multiple stages of it) doesn't seem to work - I only get:</p> <ul> <li>textView.superview = an instance of UIView</li> <li>textView.superview.superview = UIViewControllerWrapperView</li> <li>textView.superview.superview.superview = UINavigationTransitionView</li> <li>textView.superview.superview.superview.superview = UILayoutContainerView</li> <li>textView.superview.superview.superview.superview.superview = UIWindow</li> <li>textView.superview.superview.superview.superview.superview.superview = nil</li> </ul> <p>I found the class names by printing out something like</p> <pre> printf( "class: %s\n", [[[uiv class] description] UTF8String] ) ; </pre> http://stackoverflow.com/questions/1787722/how-do-i-add-a-button-to-my-navigationcontrollers-right-side-after-pushing-anoth 0 How do I add a button to my navigationController's right side after pushing another view controller in? bobobobo 2009-11-24T04:11:54Z 2009-11-24T04:52:54Z <p>So, immediately after pushing a view controller to my tableView,</p> <pre> // Override to support row selection in the table view. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { // Navigation logic may go here -- // for example, create and push another view controller. AnotherViewController *anotherViewController = [[AnotherViewController alloc] initWithNibName:@"AnotherView" bundle:nil]; [self.navigationController pushViewController:anotherViewController animated:YES]; </pre> <p>Ok, so that makes another view slide on, and you can go back to the previous view ("pop" the current view) by clicking the button that <em>automatically</em> appears in the top left corner of the navigation bar now.</p> <p>Ok, so SAY I want to populate the RIGHT SIDE of the navigation bar with a DONE button, like in the "Notes" app that comes with the iPhone. How would I do that?</p> <p>I tried code like this:</p> <pre> UIBarButtonItem * doneButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector( doneFunc ) ]; <b>self.navigationController.navigationItem.rightBarButtonItem = doneButton ;</b> // not it.. [doneButton release] ; </pre> <p>doneFunc is defined, and everything, just the button never appears on the right side..</p> http://stackoverflow.com/questions/1787722/how-do-i-add-a-button-to-my-navigationcontrollers-right-side-after-pushing-anoth/1787869#1787869 0 Answer by bobobobo for How do I add a button to my navigationController's right side after pushing another view controller in? bobobobo 2009-11-24T04:52:54Z 2009-11-24T04:52:54Z <p>AH. You have to do:</p> <pre> - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { AnotherViewController *anotherViewController = [[AnotherViewController alloc] initWithNibName:@"AnotherView" bundle:nil]; [self.navigationController pushViewController:anotherViewController animated:YES]; UIBarButtonItem * doneButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector( doneFunc ) ]; <b>anotherViewController</b>.navigationItem.rightBarButtonItem = doneButton ; [doneButton release] ; } </pre> <p>Who'da thunk it.</p> http://stackoverflow.com/questions/1787792/how-do-i-make-the-rightbarbuttonitem-stay-when-a-view-controller-is-pushed-on 0 How do I make the rightBarButtonItem STAY when a view controller is pushed on? bobobobo 2009-11-24T04:31:30Z 2009-11-24T04:39:03Z <p>When I push a view onto my view controller</p> <pre> - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { AnotherViewController *anotherViewController = [[AnotherViewController alloc] initWithNibName:@"AnotherView" bundle:nil]; [self.navigationController pushViewController:anotherViewController animated:YES]; } </pre> <p>the RIGHT BUTTON ITEM of the navigationController DISAPPEARS.</p> <p>Is there a way to make the <code>self.navigationController.rightBarButtonItem</code> STAY THERE like in the "Notes" application that comes with the iPhone?</p> http://stackoverflow.com/questions/1784796/wiring-events-to-a-uitextview 0 Wiring events to a UITextView bobobobo 2009-11-23T17:47:05Z 2009-11-24T03:09:02Z <p>I can't seem to wire events to my UITextView.</p> <p>I'm <em>expecting</em> that the list of events that are available for the UITextField ("Did End On Exit", "Editing Changed", etc) , should all be available for the UITextView.</p> <p>However this isn't the case. UITextView in its events listing shows <em>nothing</em>.</p> <p>What's going on here and how do I trap events for UITextView?</p> http://stackoverflow.com/questions/1785027/how-do-you-connect-the-delegate-outlet-of-a-uitextview-to-a-class-that-implemen 0 How do you connect the "delegate" outlet of a UITextView to a class that implements UITextViewDelegate protocol? bobobobo 2009-11-23T18:23:08Z 2009-11-23T19:21:00Z <p>How do you connect the "delegate" outlet of a UITextView to a class that implements UITextViewDelegate protocol?</p> <p>I can't seem to find an example <a href="http://developer.apple.com/iphone/library/DOCUMENTATION/UIKit/Reference/UITextViewDelegate_Protocol/Reference/UITextViewDelegate.html" rel="nofollow">in the docs</a></p> <p>The weird thing is the UITextView's "delegate" outlet has that drag 'n drop interface thingy, like you can wire it up to <b>another widget</b> but of course, I don't want to wire it up to a widget, I want to wire it up to an <b>existing class</b>.</p> http://stackoverflow.com/questions/1780929/insertnewobjectforentityforname 1 insertNewObjectForEntityForName: bobobobo 2009-11-23T03:12:56Z 2009-11-23T04:48:48Z <p>Boy oh boy, do I have a question that should overflow <b><em>your</em></b> stack.</p> <p>I'm sorry, was that inappropriate? :)</p> <p>But seriously, the question is as follows:</p> <p>I set up an Entity using the XCode .xcdatamodel file editor. I created an entity called Person, added a few attributes, then generated a .m file to represent it. That all works fine.</p> <p>Now when I go to write a line of code like:</p> <pre> Person * person = (Person*)[NSEntityDescription insertNewObjectForEntityForName:@"Person" inManagedObjectContext:managedObjectContext]; </pre> <p>And I get:</p> <blockquote> Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '+entityForName: could not locate an NSManagedObjectModel for entity name 'Person'' </blockquote> <p>I followed the Location example exactly though, step-for-step I believe, but I think I <em>must</em> have missed some kind of crucial "registration" step where I tell XCode that my Person entity should be accessible.. Also I didn't have a way to "initialize" the managedObjectContext at all, the Location example doesn't seem to do that either.</p> http://stackoverflow.com/questions/1456070/dealing-with-db-timeout-on-google-app-engine 1 Dealing with db.Timeout on Google App Engine bobobobo 2009-09-21T18:33:05Z 2009-11-15T07:39:11Z <p>I'm testing my application (on <a href="http://en.wikipedia.org/wiki/Google%5FApp%5FEngine" rel="nofollow">Google App Engine</a> live servers) and the way I've written it I have about 40 db.GqlQuery() statements in my code (mostly part of classes).</p> <p>I keep getting db.Timeout <em>very often</em> though.</p> <p>How do I deal with this? I was going to surround all my queries with really brutal code like this:</p> <pre> querySucceeded = False while not querySucceeded : try : result = db.GqlQuery( """xxx""" ).get() querySucceeded = True #only get here if above line doesn't raise exc except : querySucceeded = False </pre> <p>Is this ok? Do you agree? What's a better way to deal with db.Timeouts?</p> <h3>Edit:</h3> <p>I now use this for any get queries</p> <pre> """ Query gets single result """ def queryGet( gql ) : querySucceeded = False while not querySucceeded : try : result = db.GqlQuery( gql ).get() querySucceeded = True #only get here if above line doesn't raise except : querySucceeded = False return result </pre> <p>I have similar functions for fetch and count.</p> http://stackoverflow.com/questions/1703943/what-does-the-retain-message-mean 0 What does the retain message mean? bobobobo 2009-11-09T21:25:53Z 2009-11-10T20:49:53Z <p>In objective-c you see</p> <pre> [object retain] ; </pre> <p>What does sending a <code>retain</code> message to an object mean and why would you use one?</p> http://stackoverflow.com/questions/1703353/programmatically-attaching-event-handlers 0 Programmatically attaching event handlers bobobobo 2009-11-09T19:56:38Z 2009-11-10T08:34:22Z <p>So, I'm trying to programmatically attach event handlers to widgets I've placed on my iphone application using:</p> <pre> <a href="http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIControl_Class/Reference/Reference.html#//apple_ref/occ/instm/UIControl/addTarget:action:forControlEvents:" rel="nofollow">addTarget:action:forControlEvents</a> </pre> <p>I have added a UISegmentedControl in Interface Builder which is exposed through <code>@property seg</code> and in loadView, I have:</p> <pre> - (void)loadView { [ super loadView ] ; //k after that attach our own event handlers [ seg addTarget:seg action:@selector(sliderEventIB) forControlEvents:UIControlEventAllEvents ]; } </pre> <p>sliderEventIB, just tells us it feels the event:</p> <pre> -(IBAction)sliderEventIB:(id)sender forEvent:(UIEvent*)event { puts( "I feel you joanna" ) ; } </pre> <p>but the error I'm getting is </p> <pre> ViewControllersTest[6744:207] *** -[UISegmentedControl sliderEventIB]: <b>unrecognized selector sent to instance 0x3b21b30</b> </pre> <p>Any idea what it <strong>doesn't</strong> like here?</p> http://stackoverflow.com/questions/1705318/nslog-suppress-date 2 NSLog suppress date bobobobo 2009-11-10T02:39:29Z 2009-11-10T03:42:26Z <p>I find NSLog() statements really hard to read because of the verbose date.</p> <p>Is there a way to suppress the date on NSLog?</p> http://stackoverflow.com/questions/1697807/objective-c-messages-whats-the-right-way-to-read-it 6 Objective-C "messages" - what's the right way to read it? bobobobo 2009-11-08T20:21:21Z 2009-11-09T01:20:19Z <p>You can declare a method in objective-c and name <b><em>each parameter twice</em></b>, basically.</p> <p>I get the idea that this is powerful, but I'm not quite sure how to use it yet...</p> <p>When John Greets Kelly:</p> <p><code>[ p Greet:"John" toPerson:"Kelly" greetWith:"hey babe" ] ;</code></p> <p>Something about it doesn't read naturally. I'm not sure if that's how an experienced objective-c programmer would write that "message".</p> <p>Can someone explain the reason for two names for each parameter and possibly a more useful example of how this can be used effectively to put meaning in the program?</p> <p>Also something bothers me and that is the <strong>name of the first parameter</strong> is basically the same as the name of the '<em>message</em>'. How do you resolve that in writing meaningful and understandable method/'message names'?</p> <pre> #import &lt;Foundation/Foundation.h&gt; @interface Person : NSObject { } -(void)Greet:(char*)from toPerson:(char*)to greetWith:(char*)greeting ; @end @implementation Person -(void)Greet:(char*)from toPerson:(char*)to greetWith:(char*)greeting ; { printf( "%s says %s to %s\n", from, greeting, to ) ; } @end int main (int argc, const char * argv[]) { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; Person * p = [ Person alloc ] ; [ p Greet:"John" toPerson:"Kelly" greetWith:"hey babe" ] ; [ p Greet:"Kelly" toPerson:"John" greetWith:"get bent" ] ; [ p release ] ; [pool drain]; return 0; } </pre> http://stackoverflow.com/questions/1697151/dynamic-binding-seems-like-a-lie 5 Dynamic binding seems like a lie. bobobobo 2009-11-08T17:01:11Z 2009-11-08T17:16:52Z <p>Objective-C uses dynamic binding: that is method calls are resolved at runtime.</p> <p>Fine. </p> <p>And <a href="http://stackoverflow.com/questions/1695140/self-in-objective-c/1695271#1695271">use of dot notation really boils down to a method call</a></p> <p>But, why then, can't I do something like this:</p> <pre> #import &lt;Foundation/Foundation.h&gt; int main (int argc, const char * argv[]) { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; // Intercept the exception @try { @throw [ NSException exceptionWithName:@"Exception named ME!" reason:@"Because i wanted to" userInfo:nil ] ; } @catch( id exc ) // pointer to an exception object? { //NSLog( @"%@ : %@\n", exc.name, exc.reason ) ; // <b>ILLEGAL: Request for member // 'name' in something not a structure or union.</b>. // If objective-c uses dynamic binding, and dot notation // boils down to calling the getter, then // WHY do I have to cast to the concrete type here? // Only works if I cast to the concrete type NSException* NSException* nexc = (NSException*)exc ; NSLog( @"%@ : %@\n", nexc.name, nexc.reason ) ; } [pool drain]; return 0; } </pre> <p><b>When I hear "dynamic binding" I'm thinking "so it should behave like a scripting language", </b> and I'm surprised how inflexible Objective-C seems compared to a scripting language like JavaScript.</p> http://stackoverflow.com/questions/1697093/objective-c-uses-dynamic-binding-but-how 0 Objective-C uses dynamic binding, but how? bobobobo 2009-11-08T16:43:53Z 2009-11-08T17:10:03Z <p>I know that Objective-C uses dynamic binding for all method calls. How is this implemented? Does objective-c "turn into C code" before compilation and just use (void*) pointers for everything?</p> http://stackoverflow.com/questions/1695140/self-in-objective-c 2 self in objective-c bobobobo 2009-11-08T02:22:46Z 2009-11-08T03:24:56Z <p>is <code>self</code> not completely interchangeable with <code>this</code> in C++?</p> <p>It seems to work with message passing ( [ self sayHi ] would work within any method there ).</p> <p>I don't quite understand why I can't use self to access private members of an object (in the example below, I show I can't use self.width)</p> <pre> #import &lt;Foundation/Foundation.h&gt; // Write an objective-c class @interface Rectangle : NSObject { int width ; } -(int)getWidth; -(void)setWidth:(int)w; -(void)sayHi; -(void)sayHi:(NSString*)msg ; @end @implementation Rectangle -(int)getWidth { <b>// return self.width ; // ILLEGAL, but why??</b> // why can't I return self.width here? // why does it think that's a "method"? return width ; } -(void)setWidth:(int)w { <b>// self.width = w ; // ILLEGAL</b> // again here, i CAN'T do self.width = w ; width = w ; } -(void)sayHi { puts("hi"); } -(void)sayHi:(NSString*)msg { printf( "Hi, and %s\n", [ msg UTF8String ] ) ; } @end int main (int argc, const char * argv[]) { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; Rectangle* r = [ Rectangle alloc ] ; [ r sayHi ] ; [ r setWidth:5 ] ; printf( "width is %d\n", [ r getWidth ] ) ; [pool drain]; return 0; } </pre> http://stackoverflow.com/questions/1664376/uitextfield-ellipses 0 UITextField ellipses bobobobo 2009-11-02T23:30:05Z 2009-11-02T23:34:45Z <p>I have a UITextField but when it overflows I want it to <strong>scroll</strong> not use an ellipses. Can you do this on the iPhone?</p> http://stackoverflow.com/questions/1662475/managing-uitextfield-text-property 0 Managing UITextField.text property bobobobo 2009-11-02T17:05:06Z 2009-11-02T19:46:26Z <p>Well, I have a UITextField.</p> <p>Inside it is a property UITextField.text.</p> <h1>Is it ok to do:</h1> <pre><code>// Assume we have UITextField * tf somewhere.. // now set its text.. tf.text = [ [ NSString alloc ] initWithUTF8String:"Init'd with utf8" ] ; </code></pre> <p>My problem with this is memory. <strong>What happens</strong> to the old value of the UITextField's text property.</p> <h1>Don't you have to do:</h1> <pre><code>// maintain reference to old NSString NSString * oldTfText = tf.text ; // set the value to the new value you want tf.text = [ [ NSString alloc ] initWithUTF8String:"Init'd with utf8" ] ; // release the old NSString now.. [ oldTfText release ] ; </code></pre> <p>I'm still thinking of memory mgmt as I do in normal C. This might be the flaw here.</p> http://stackoverflow.com/questions/1662772/nsstring-no-assign-retain-or-copy-attribute-is-specified 3 NSString no 'assign', 'retain', or 'copy' attribute is specified bobobobo 2009-11-02T18:07:31Z 2009-11-02T18:18:12Z <p>I'm declaring an NSString property in a class and objective-c is complaining that:</p> <blockquote> NSString no 'assign', 'retain', or 'copy' attribute is specified </blockquote> <p>It then casually lets me know that "assign is used instead".</p> <p>Can someone explain to me the difference between <strong>assign</strong>, <strong>retain</strong> and <strong>copy</strong> in terms of <strong>normal C memory management</strong> functions?</p> http://stackoverflow.com/questions/1662681/how-to-code-via-mental-models-in-the-absence-of-a-keyboard/1662703#1662703 -1 Answer by bobobobo for How to code via mental-models, in the absence of a keyboard. bobobobo 2009-11-02T17:52:21Z 2009-11-02T17:52:21Z <p>First let me suggest you get the <a href="http://stackoverflow.com/questions/687/keyboard-for-programmers">MS Ergo 4000</a> if you don't already have it! I <strong>can't</strong> code without it!</p> <p>Sometimes I take a break from the keyboard and write code by hand for an hour or so. You have to type it in later, but I think the addition different type of wrist movement helps me, at least.</p> http://stackoverflow.com/questions/1658824/is-it-possible-to-use-in-php-switch/1658842#1658842 1 Answer by bobobobo for Is it possible to use || in PHP switch? bobobobo 2009-11-01T23:58:41Z 2009-11-02T01:12:13Z <p>Yeah, I think what you've got there is equivalent to:</p> <pre> &lt;?php $foo = 5000 ; switch( $foo ) { <b>case true :</b> // Gzipp: an '=='-style comparison is made echo 'first one' ; // between $foo and the value in the case break; // so for values of $foo that are "truthy" // you get this one all the time. case 2: echo 'second one'; break; default: echo 'neither' ; break; } ?&gt; </pre> http://stackoverflow.com/questions/1656319/how-to-get-interface-builder-name-from-id 0 How to get Interface Builder name from id bobobobo 2009-11-01T03:39:47Z 2009-11-01T18:30:37Z <p>If I name a widget in Interface Builder, and then I write a method that receives click events on that button:</p> <pre><code>- (IBAction)btnTouchDown:(id)sender { // how can you identify the button here, // if several different buttons map // their "Touch" event to this same function? // I know you can look at its text but that seems really clumsy // can I somehow get its INTERFACE BUILDER NAME? // I named each uniquely in interface builder, // under "Identity"/"Name" // Or is my only recourse to tie EACH BUTTON to its own handler function? } </code></pre> http://stackoverflow.com/questions/1657544/what-does-the-mean-on-mac-dev-center 0 What does the + mean on Mac Dev Center? bobobobo 2009-11-01T16:14:04Z 2009-11-01T16:19:24Z <p>For example, <a href="http://developer.apple.com/mac/library/documentation/cocoa/reference/Foundation/Classes/NSString_Class/Reference/NSString.html" rel="nofollow">NSString documentation has</a></p> <pre><code>– initWithFormat: – initWithFormat:arguments: – initWithFormat:locale: – initWithFormat:locale:arguments: – initWithData:encoding: + stringWithFormat: + localizedStringWithFormat: + stringWithCharacters:length: + stringWithString: + stringWithCString:encoding: + stringWithUTF8String: </code></pre> <p>So what does it mean when a method name has a + at its left?</p> http://stackoverflow.com/questions/1656503/uitextfield-where-to-set-clearsonbeginediting 0 UITextField where to set clearsOnBeginEditing bobobobo 2009-11-01T05:51:23Z 2009-11-01T06:01:43Z <p>I'm really used to VS where all properties are nicely listed in a big dialog.</p> <p>In Interface Builder I can find no such dialog.</p> <p>If I want to set the clearsOnBeginEditing field of a UITextField to FALSE, where is the best place to do it? Is there an interface to a control's properties in interface builder that I'm just missing?</p> http://stackoverflow.com/questions/1656356/something-like-nets-tag-property-for-interface-builder 0 Something like .NET's "tag" property for Interface Builder bobobobo 2009-11-01T04:08:18Z 2009-11-01T04:18:40Z <p>I'm currently struggling to use UI elements in Interface Builder. I keep trying to do things "in the .NET way."</p> <p>I have several buttons that all map down their TOUCH event to the SAME FUNCTION:</p> <pre><code>-(IBAction) onTouch:(id) sender { // do something with touch, DEPENDING ON WHAT BUTTON WAS PUSHED // I want to do something like if( sender.tag == "something" ) { //...doesn't work on apple, of course.. } } </code></pre> <p>I want to uniquely identify each BUTTON USING SOMETHING like the TAG property in .NET. I tried using the INTERFACE BUILDER "NAME" field that is on the "Identity" panel of interface builder, but <em>I don't know how to access that field programmatically</em>.</p> <pre><code>-(IBAction) onTouch:(id) sender { // do something with touch, DEPENDING ON WHAT BUTTON WAS PUSHED // I want to do something like if( sender.InterfaceBuilderName == "something" ) { //...doesn't work.. } } </code></pre> <p>So, WHAT / IS THERE a way to uniquely identify a UI element (such as a button) OTHER THAN doing something like</p> <pre><code>-(IBAction) onTouch:(id) sender { // look at [sender currentTitle] } </code></pre> <p>The reason that's bad is because if the text on the button changes for some cosmetic reason you break the whole app, right</p> <p>The last solution I can think of is <strong>write seperate functions</strong> for each button's touch event but I <strong>really</strong> want to know if it is possible to uniquely identify a button by something similar to .Net's TAG property.</p> http://stackoverflow.com/questions/1655956/c-not-explicitly-returning-constructed-struct-but-it-still-works 0 C: Not explicitly returning constructed struct, but it still works bobobobo 2009-10-31T23:52:28Z 2009-11-01T00:10:51Z <p>I write a 'constructor' function that makes a Node in C, compiled with Visual Studio 2008, ANSI C mode.</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;stdlib.h&gt; typedef struct _node { struct _node* next ; char* data ; } Node ; Node * makeNode() { Node * newNode = (Node*)malloc( sizeof(Node) ) ; // uncommenting this causes the program to fail. //puts( "I DIDN'T RETURN ANYTHING!!" ) ; } int main() { Node * myNode = makeNode() ; myNode-&gt;data = "Hello there" ; // elaborate program, still works puts( myNode-&gt;data ) ; return 0 ; } </code></pre> <p>What's surprising to me :</p> <ul> <li>* Not returning a value from makeNode() is only a warning,</li> <li>* More surprising is makeNode() __still works__ as long as I don't puts() anything!</li> </ul> <p>What's going on here and is it "ok" to do this (not return the object you create in a C 'constructor' function?)</p> <p>WHY is it still working? Why does the puts() command cause the program to fail?</p> http://stackoverflow.com/questions/1628493/is-a-extends-inherits-what-is-your-preferred-term-for-inheritance-and-why 0 Is-a, extends, 'inherits': What is your preferred term for "inheritance" and why? bobobobo 2009-10-27T02:38:07Z 2009-10-27T11:17:08Z <p>A subjective question, hence if there are complaints I'll wiki, but I'd like to know what people's takes are on the different terms that are used for inheritance almost interchangeably.</p> <p>We have "is-a", "extends", "derives", "subclasses" and simply "inherits"</p> <p>The words we choose have a lot of meaning packed into them. What is your preferred term for "inheritance" and why?</p> <p><em>Be compelling!</em></p> http://stackoverflow.com/questions/1402948/which-is-the-most-efficient-xml-parser-for-c Comment by bobobobo on which is the most efficient XML Parser for C++ ? bobobobo 2009-12-01T07:04:24Z 2009-12-01T07:04:24Z <a href="http://stackoverflow.com/questions/170686/best-open-xml-parser-for-c" rel="nofollow" title="best open xml parser for c">stackoverflow.com/questions/170686/&hellip;</a> http://stackoverflow.com/questions/1006543/a-lightweight-xml-parser-efficient-for-large-files Comment by bobobobo on A lightweight XML parser efficient for large files? bobobobo 2009-12-01T07:03:51Z 2009-12-01T07:03:51Z <a href="http://stackoverflow.com/questions/170686/best-open-xml-parser-for-c" rel="nofollow" title="best open xml parser for c">stackoverflow.com/questions/170686/&hellip;</a> http://stackoverflow.com/questions/170686/best-open-xml-parser-for-c/1824428#1824428 Comment by bobobobo on Best open XML parser for C++ bobobobo 2009-12-01T07:02:00Z 2009-12-01T07:02:00Z ooh, wait, Raminder did http://stackoverflow.com/questions/170686/best-open-xml-parser-for-c/170912#170912 Comment by bobobobo on Best open XML parser for C++ bobobobo 2009-12-01T06:58:03Z 2009-12-01T06:58:03Z this is just beautiful.. compared with xerces.. http://stackoverflow.com/questions/1567082/how-do-i-iterate-over-cin-line-by-line-in-c/1567703#1567703 Comment by bobobobo on How do I iterate over cin line by line in C++? bobobobo 2009-11-28T20:00:45Z 2009-11-28T20:00:45Z Guys, his name is cppLearner. Really. http://stackoverflow.com/questions/1806688/is-there-a-less-hacky-way-to-do-this-in-mysql Comment by bobobobo on Is there a less hacky way to do this in MySQL? bobobobo 2009-11-27T04:18:09Z 2009-11-27T04:18:09Z desc products ; http://stackoverflow.com/questions/1806248/login-pages-that-expire Comment by bobobobo on Login pages that expire bobobobo 2009-11-27T04:15:19Z 2009-11-27T04:15:19Z Just a note, just because you're not familiar with this type of problem, it doesn't make it &quot;not a real question&quot;. If you don't know the answer, you can ignore the question and move on. http://stackoverflow.com/questions/1160498/synthesize-vs-dynamic-what-are-the-differences/1160526#1160526 Comment by bobobobo on @synthesize vs @dynamic, what are the differences? bobobobo 2009-11-25T05:11:16Z 2009-11-25T05:11:16Z This is morer-correcter man. This answer is the only answer that talks about methods created at runtime, which really seems to capture the spirit a lot more than top voted ans atm http://stackoverflow.com/questions/1792858/how-do-i-get-the-rootviewcontroller-from-a-pushed-controller/1792938#1792938 Comment by bobobobo on How do I get the RootViewController from a pushed controller? bobobobo 2009-11-25T02:21:43Z 2009-11-25T02:21:43Z :) ty. It still seems hacky - :) I really wanted an &quot;official&quot; member to do the job, something like self.navigationController.rootViewController, but alas, no such thing.. http://stackoverflow.com/questions/1790704/difference-between-square-brackets-and-asterisk/1791589#1791589 Comment by bobobobo on Difference between [square brackets] and *asterisk bobobobo 2009-11-24T18:32:13Z 2009-11-24T18:32:13Z Guys your necks are showing http://stackoverflow.com/questions/1790704/difference-between-square-brackets-and-asterisk/1790908#1790908 Comment by bobobobo on Difference between [square brackets] and *asterisk bobobobo 2009-11-24T18:31:13Z 2009-11-24T18:31:13Z Good example! I've been wondering about that.. so the number is discarded by the compiler if you specify it, basically, unless its 2D or more, in which case, only the last number is kept. http://stackoverflow.com/questions/1790704/difference-between-square-brackets-and-asterisk/1790720#1790720 Comment by bobobobo on Difference between [square brackets] and *asterisk bobobobo 2009-11-24T15:24:01Z 2009-11-24T15:24:01Z :) - so wrt to style, does it matter/which as an argument to a function? http://stackoverflow.com/questions/1790704/difference-between-square-brackets-and-asterisk/1790720#1790720 Comment by bobobobo on Difference between [square brackets] and *asterisk bobobobo 2009-11-24T15:20:41Z 2009-11-24T15:20:41Z in readEmSquare, checking sizeof( arrayOfInt ) will return 4, it is a pointer http://stackoverflow.com/questions/1785027/how-do-you-connect-the-delegate-outlet-of-a-uitextview-to-a-class-that-implemen/1785366#1785366 Comment by bobobobo on How do you connect the "delegate" outlet of a UITextView to a class that implements UITextViewDelegate protocol? bobobobo 2009-11-24T14:40:35Z 2009-11-24T14:40:35Z Yeah, :). I would have picked this answer, but the problem was I couldn't get it to work. I created an instance of the MyDelegate class in the xib (1) and connected up the &quot;delegate&quot; outlet of the UITextView to the MyDelegate instance. The program would crash immediately after touching the textView. This is the &quot;right&quot; answer to the question however. http://stackoverflow.com/questions/1784796/wiring-events-to-a-uitextview/1787539#1787539 Comment by bobobobo on Wiring events to a UITextView bobobobo 2009-11-24T14:37:14Z 2009-11-24T14:37:14Z Well yeah that makes sense.