bobobobo
|
Registered User
|
|
|
19h |
comment |
How do I iterate over cin line by line in C++? Guys, his name is cppLearner. Really. |
|
2d |
comment |
Is there a less hacky way to do this in MySQL? desc products ; |
|
2d |
comment |
Login pages that expire Just a note, just because you're not familiar with this type of problem, it doesn't make it "not a real question". If you don't know the answer, you can ignore the question and move on. |
|
2d |
asked | Login pages that expire |
|
Nov 25 |
comment |
@synthesize vs @dynamic, what are the differences? 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 |
|
Nov 25 |
comment |
How do I get the RootViewController from a pushed controller? :) ty. It still seems hacky - :) I really wanted an "official" member to do the job, something like self.navigationController.rootViewController, but alas, no such thing.. |
|
Nov 24 |
asked | How do I get the RootViewController from a pushed controller? |
|
Nov 24 |
comment |
Difference between [square brackets] and *asterisk Guys your necks are showing |
|
Nov 24 |
comment |
Difference between [square brackets] and *asterisk 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. |
|
Nov 24 |
comment |
Difference between [square brackets] and *asterisk :) - so wrt to style, does it matter/which as an argument to a function? |
|
Nov 24 |
comment |
Difference between [square brackets] and *asterisk in readEmSquare, checking sizeof( arrayOfInt ) will return 4, it is a pointer |
|
Nov 24 |
asked | Difference between [square brackets] and *asterisk |
|
Nov 24 |
comment |
How do you connect the “delegate” outlet of a UITextView to a class that implements UITextViewDelegate protocol? 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 "delegate" outlet of the UITextView to the MyDelegate instance. The program would crash immediately after touching the textView. This is the "right" answer to the question however. |
|
Nov 24 |
comment |
Wiring events to a UITextView Well yeah that makes sense. |
|
Nov 24 |
comment |
How do I get a UIViewController given a UITextView? Hmm, good point. Maybe my viewcontroller SHOULD act as the UITextViewDelegate. I just didn't think when I started doing that would help, but really, here it would :) |
|
Nov 24 |
asked | How do I get a UIViewController given a UITextView? |
|
Nov 24 |
answered | How do I add a button to my navigationController’s right side after pushing another view controller in? |
|
Nov 24 |
comment |
How do I add a button to my navigationController’s right side after pushing another view controller in? No, I did try that, but the rightBarButtonItem still disappears once the new view controller is pushed on. |
|
Nov 24 |
asked | How do I make the rightBarButtonItem STAY when a view controller is pushed on? |
|
Nov 24 |
comment |
How do I add a button to my navigationController’s right side after pushing another view controller in? No, tried that.. but it was helpful. I moved it to viewDidAppear. It seems the problem is the right button gets HIDDEN whenever a new view controller is pushed on top of the stack |
|
Nov 24 |
asked | How do I add a button to my navigationController’s right side after pushing another view controller in? |
|
Nov 24 |
revised |
Resizing UITextView edited tags |
|
Nov 24 |
comment |
How do you connect the “delegate” outlet of a UITextView to a class that implements UITextViewDelegate protocol? Sweet. This way works. |
|
Nov 24 |
comment |
How do you connect the “delegate” outlet of a UITextView to a class that implements UITextViewDelegate protocol? Yeah. And the application WORKS when I use the textView.delegate = yourDelegateObject ; method that Rhult talks about. |
|
Nov 24 |
comment |
How do you connect the “delegate” outlet of a UITextView to a class that implements UITextViewDelegate protocol? Seems reasonable enough, but now when I run the application, the application crashes without warning whenever I touch the textView.. |
|
Nov 23 |
comment |
How do you connect the “delegate” outlet of a UITextView to a class that implements UITextViewDelegate protocol? Ok, but, have you any idea why the outlet looks like it can be dragged onto a widget? You can't drag the outlet onto a piece of code, so why is it designed that way? |
|
Nov 23 |
asked | How do you connect the “delegate” outlet of a UITextView to a class that implements UITextViewDelegate protocol? |
|
Nov 23 |
comment |
Wiring events to a UITextView I wrote a class which implements the UITextViewDelegate protocol, but I cannot find how to connect the "delegate" outlet to the class I wrote |
|
Nov 23 |
comment |
Wiring events to a UITextView No, I am not. I see there is a different outlet here in the UITextView called "delegate", but its not clear what I do with that outlet. How do I hook that outlet up to my class which implements the UITextViewDelegate protocol? An example would be nice. |
|
Nov 23 |
asked | Wiring events to a UITextView |
|
Nov 23 |
comment |
iPhone proper usage of Application Delegate THat sounds like a comment not an answer |
|
Nov 23 |
asked | insertNewObjectForEntityForName: |
|
Nov 21 |
comment |
Quartz 2D vs OpenGL ES Learning Curve Where'd you originally find your lunar lander clone? |
|
Nov 10 |
comment |
How to know if an object is autoreleased or not? This is a good answer too. |
|
Nov 10 |
asked | NSLog suppress date |
|
Nov 10 |
comment |
What does the retain message mean? How do you identify if an object (such as an array) will be autoreleased once your variable handle to it goes out of scope? |
|
Nov 9 |
asked | What does the retain message mean? |
|
Nov 9 |
asked | Programmatically attaching event handlers |
|
Nov 9 |
comment |
IBOutlet and IBAction All the answers mention the same type of idea.. but nobody explains why Interface Builder seems to work just the same if you DO NOT include IBAction/IBOutlet in your source. Is there another reason for IBAction and IBOutlet or is it ok to leave them off? |
|
Nov 9 |
comment |
IBOutlet and IBAction but why does it still work if you don't include the IBOutlet labelling..? |
|
Nov 9 |
comment |
IBOutlet and IBAction But yo, if you DON'T include IBAction any methods you declare in your ViewController still show up in Interface builder! |
|
Nov 8 |
revised |
Objective-C “messages” - what’s the right way to read it? added 221 characters in body |
|
Nov 8 |
asked | Objective-C “messages” - what’s the right way to read it? |
|
Nov 8 |
revised |
Dynamic binding seems like a lie. added 206 characters in body; added 6 characters in body |
|
Nov 8 |
asked | Dynamic binding seems like a lie. |
|
Nov 8 |
asked | Objective-C uses dynamic binding, but how? |
|
Nov 8 |
comment |
self in objective-c Oh re-he-he-heally... sweet. So dot notation simply translates down to that square bracket stuff. Thanks! This answer helped. |
|
Nov 8 |
asked | self in objective-c |
|
Nov 5 |
comment |
Simple but powerful programming language for a hobby software project simple != simplistic |
|
Nov 2 |
asked | UITextField ellipses |
