User Tyler - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T09:44:54Zhttp://stackoverflow.com/feeds/user/3561http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/11831/singletons-good-design-or-a-crutch/64999#6499919Answer by Tyler for Singletons: good design or a crutch?Tyler2008-09-15T17:38:23Z2009-12-17T00:09:49Z<p>In defense of singletons:</p>
<ul>
<li><strong>They are not as bad as globals</strong> because globals have no standard-enforced initialization order, and you could easily see nondeterministic bugs due to naive or unexpected dependency orders. Singletons (assuming they're allocated on the heap) are created after all globals, and in a very predictable place in the code.</li>
<li><strong>They're very useful for resource-lazy / -caching systems</strong> such as an interface to a slow I/O device. If you intelligently build a singleton interface to a slow device, and no one ever calls it, you won't waste any time. If another piece of code calls it from multiple places, your singleton can optimize caching for both simultaneously, and avoid any double look-ups. You can also easily avoid any deadlock condition on the singleton-controlled resource.</li>
</ul>
<p>Against singletons:</p>
<ul>
<li><strong>In C++, there's no nice way to auto-clean-up after singletons.</strong> There are work-arounds, and slightly hacky ways to do it, but there's just no simple, universal way to make sure your singleton's destructor is always called. This isn't so terrible memory-wise -- just think of it as more global variables, for this purpose. But it can be bad if your singleton allocates other resources (e.g. locks some files) and doesn't release them.</li>
</ul>
<p>My own opinion:</p>
<p>I use singletons, but avoid them if there's a reasonable alternative. This has worked well for me so far, and I have found them to be testable, although slightly more work to test.</p>
http://stackoverflow.com/questions/58640/great-programming-quotes/58675#58675192Answer by Tyler for Great programming quotesTyler2008-09-12T10:56:55Z2009-12-15T20:29:05Z<p><code>"Beware of bugs in the above code; I have only proved it correct, not tried it."</code></p>
<p><a href="http://en.wikipedia.org/wiki/Donald%5FKnuth#Knuth.E2.80.99s%5Fhumor" rel="nofollow">Donald Knuth</a></p>
http://stackoverflow.com/questions/1540240/html5-cache-manifest-in-a-uiwebview0Html5 cache manifest in a UIWebView?Tyler2009-10-08T20:30:57Z2009-12-08T01:27:19Z
<p>I'd like to be able to use the html5 cache manifest to store images locally on an iPhone that is visiting the page via a <code>UIWebView</code> within an app.</p>
<p>I've set up a sample that I think conforms to the specs, and appears to work in safari 4 and mobile safari, but not in my app's <code>UIWebView</code>.</p>
<p>The sample html is set up at <a href="http://bynomial.com/html5/clock3.html" rel="nofollow"><code>http://bynomial.com/html5/clock3.html</code></a>.</p>
<p>This is very similar to the sample provided in the <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/offline.html" rel="nofollow"><code>HTML5 draft standard</code></a>.</p>
<p>Here is the entire (non-template) code of the sample app I'm using for testing:</p>
<pre><code>- (void)applicationDidFinishLaunching:(UIApplication *)application {
// I thought this might help - I don't see any difference, though.
NSURLCache* cache = [NSURLCache sharedURLCache];
[cache setDiskCapacity:512*1024];
CGRect frame = [[UIScreen mainScreen] applicationFrame];
UIWebView* webView = [[UIWebView alloc] initWithFrame:frame];
[window addSubview:webView];
NSString* urlString = @"http://bynomial.com/html5/clock3.html";
NSURL* url = [NSURL URLWithString:urlString];
NSURLRequest* request = [NSURLRequest requestWithURL:url];
[webView loadRequest:request];
[window makeKeyAndVisible];
}
</code></pre>
<p>I've reviewed a few related questions on stackoverflow, but they don't seem to provide info to solve this. For example, I'm pretty sure the files I'm trying to cache are not too large, since they are just a couple small text files (way < 25k).</p>
<p>Any ideas for how to get this to work?</p>
http://stackoverflow.com/questions/1381479/adding-pins-for-nearby-places-e-g-pizzerias-in-mapkit0Adding pins for nearby places (e.g. pizzerias) in MapKitTyler2009-09-04T20:48:06Z2009-12-06T16:11:08Z
<p>MapKit doesn't natively support local search results, so I'm looking for a way to get a list of local pizzerias (or coffee shops, or a specific retailer) via some http api call.</p>
<p>The default google maps api requires javascript, so it's not clear to me how to integrate this into an iPhone app (without displaying a <code>UIWebView</code>).</p>
<p>I have found that a url in a format such as this:</p>
<p><a href="http://maps.google.com/maps?output=json&q=pizza&near=37.3,-122&num=10" rel="nofollow">http://maps.google.com/maps?output=json&q=pizza&near=37.3,-122&num=10</a></p>
<p>Does return a JSON-like list of results, but my usual friendly JSON parser, <a href="http://code.google.com/p/json-framework/" rel="nofollow">json-framework</a>, barfs when it tries to parse this (even if I do clever-sounding things like leaving out the "while(1);" at the start of the reply). I'm also not sure how legitimate this URL is to use for this purpose.</p>
http://stackoverflow.com/questions/1549949/segmentation-fault-only-when-i-redirect-stdout-to-dev-null1Segmentation fault only when I redirect stdout to /dev/null ?Tyler2009-10-11T05:39:13Z2009-10-11T06:29:07Z
<p>I've got a C++ unit test that produces useful output to stderr, and mostly noise (unless I'm debugging) to stdout, so I'd like to redirect the stdout to /dev/null.</p>
<p>Curiously enough, doing this seems to cause a segmentation fault.</p>
<p>Is there any reason why code might seg fault with "> /dev/null" and run fine otherwise?</p>
<p>The output is produced entirely by <code>printf</code>s, if that has any bearing.</p>
<p>It is difficult for me to post the offending code because it is research being submitted for publication. I'm hoping there is an "obvious" possible cause based on this description.</p>
<h2>post mortem</h2>
<p>The segfault was being caused by code like this:</p>
<pre><code>ArrayElt* array = AllocateArrayOfSize(array_size);
int index = GetIndex(..) % array_size;
ArrayElt elt = array[index];
</code></pre>
<p>For the umpteenth time, I forgot that <code>x % y</code> remains negative when <code>x</code> is negative in C/C++.</p>
<p>Ok, so why was it only happening when I redirected to <code>/dev/null</code>? My guess is that the invalid memory address I was accessing was in an output buffer for stdout - and this buffer isn't allocated when it isn't needed.</p>
<p>Thanks for the good answers!</p>
http://stackoverflow.com/questions/1489600/uibutton-background-images-appear-lighter-in-simulator-than-in-ib/1489900#14899001Answer by Tyler for UIButton Background Images appear lighter in Simulator than in IBTyler2009-09-28T23:45:39Z2009-09-28T23:45:39Z<p>It might be the case that the alpha value for your view or one of its superviews in less than 100% (value 1.0). I've seen cases where a superview had low alpha, but the subviews appeared solid in Interface Builder, while of course they were transparent or translucent when I actually ran the app.</p>
http://stackoverflow.com/questions/1488101/how-to-remove-all-the-view-along-with-rootview-from-uinavigationcontroller-in-iph/1488145#14881450Answer by Tyler for How to remove all the view along with rootView from UINavigationController in iPhoneTyler2009-09-28T16:55:11Z2009-09-28T16:55:11Z<p>One way to do this is to present the navigation controller as a modal view controller, and dismiss it when you're done:</p>
<pre><code>// In the parent controller, when the navigation controller is about to appear:
UINavigationController* navController = [[UINavigationController alloc] init];
[self presentModalViewController:navController animated:YES];
// ... later, in the nav controller, when it's done being used:
[self.parentViewController dismissModalViewControllerAnimated:YES];
[self autorelease]; // goodbye, cruel world (when the ar pool is drained)
</code></pre>
http://stackoverflow.com/questions/1487498/centered-images-are-blurry/1488117#14881174Answer by Tyler for Centered images are blurryTyler2009-09-28T16:48:14Z2009-09-28T16:48:14Z<p>This will make sure the frame is at integer coordinates:</p>
<pre><code>int centerX = 30;
int centerY = 23;
CGSize size = charImage.frame.size;
charImage.frame = CGRectMake((int)(centerX - size.width / 2),
(int)(centerY - size.height / 2),
size.width, size.height);
</code></pre>
<p>The difference between this and</p>
<pre><code>charImage.center = CGPointMake(30, 23);
</code></pre>
<p>is that the <code>.center</code> setter could set the origin to a non-integer point when either of the width or height is of the wrong parity. As other people have said here, images and text look blurry when they're at non-integer coordinates. </p>
http://stackoverflow.com/questions/1487465/my-app-closes-without-any-warning-or-error-message/1487715#14877152Answer by Tyler for My app closes without any warning or error message.Tyler2009-09-28T15:29:53Z2009-09-28T15:29:53Z<p>Sounds like you're running out of memory.</p>
<p>A few quick tips that might help out:</p>
<ul>
<li>Check your memory profile over time using Instruments. If you see a steady incline over time, it's likely to be a memory leak, or an inefficient algorithm that is allocating more memory than you need.</li>
<li>Use a static analyzer to help check for leaks, such as <a href="http://clang-analyzer.llvm.org/" rel="nofollow">Clang</a>.</li>
<li>Images and image-related files are particularly memory-hungry, so focus on efficiency for them. When you work with textures in OpenGL, use the PVRTC format, which offers awesome compression.</li>
<li><a href="http://stackoverflow.com/questions/582401/iphone-helpfulness-of-didreceivememorywarning"><code>didReceiveMemoryWarning:</code> is your friend</a> - aka a good chance to throw out anything you don't absolutely need in memory. Better to be memory-efficient the whole time, though.</li>
</ul>
http://stackoverflow.com/questions/1487531/uiscrollview-bug-float-foo-scrollview-zoomscale-crashes-the-app/1487633#14876330Answer by Tyler for UIScrollView bug? float foo = scrollview.zoomScale crashes the app.Tyler2009-09-28T15:17:42Z2009-09-28T15:17:42Z<p>It would be helpful to see the output in xcode's debugger console window. Usually when you get a crash, there is some extra information available from the debugger console (open with command-shift-R, or Run > Console in the menu). If there was an exception that caused the crash, it will say which one. In any case, you can type <code>bt</code> (for backtrace) right after a crash and see the call stack when the crash occurs.</p>
<p>In your particular case, it's possible that you've accidentally released the <code>UIScrollView</code> object, but still have a pointer to where the old deallocated object was. This would give you a crash on the next call to any method in <code>UIScrollView</code>, and since <code>zoomScale</code> is a getter accessor, it counts as a method call. The most obvious symptom of this problem would be an <code>EXC_BAD_ACCESS</code> exception in the debugger console when the crash occurs.</p>
http://stackoverflow.com/questions/1482117/overlapping-animations-help/1482258#14822581Answer by Tyler for Overlapping animations help!Tyler2009-09-26T21:43:34Z2009-09-26T21:43:34Z<p>This is happening because you're adding a new <code>batView</code> each time a touch begins.</p>
<p>One way to fix this is to add the <code>batView</code> once, such as in a superview's or a view controller's <code>init</code> method. If you only want the <code>batView</code> to appear when a touch occurs, you can start it hidden via:</p>
<pre><code>// during initialization
batView.hidden = YES;
</code></pre>
<p>Since you're always doing the same animation each time, you might as well set up your animation parameters at the same time, instead of repeating that same set up with each touch:</p>
<pre><code>// still during initialization
NSArray* imageArray = /* set up your image array */;
batView.animationImages = imageArray;
batView.animationDuration = 0.7;
</code></pre>
<p>Now, when a touch occurs, you can handle it by starting the animation:</p>
<pre><code>// Within touchesBegan:
...
// Start the batView animation.
batView.hidden = NO;
if (![batView isAnimating]) [batView startAnimating];
// Hide the animation when it's done.
[self performSelector:@selector(hideBat) withObject:nil afterDelay:0.71];
}
// Later:
- (void) hideBat { batView.hidden = YES; }
</code></pre>
<p>You might want to do something different in <code>hideBat</code> if you don't always want it to disappear right after a single animation. For example, if you want to always repeat an animation until the user stops clicking, you could set up an <a href="http://developer.apple.com/iphone/library/documentation/Cocoa/Reference/Foundation/Classes/NSTimer%5FClass/Reference/NSTimer.html" rel="nofollow"><code>NSTimer</code></a> object to go off as soon as there has been no user touches for at least 0.7 seconds. Each time the user touches the screen again, you can reset this timer.</p>
<p>Reference: <a href="http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIImageView%5FClass/Reference/Reference.html#//apple%5Fref/occ/instp/UIImageView/animationDuration" rel="nofollow">UIImageView docs</a>, which includes brief descriptions of the animation methods.</p>
http://stackoverflow.com/questions/1481826/dragging-an-uiview-inside-uiscrollview/1482207#14822070Answer by Tyler for Dragging an UIView inside UIScrollViewTyler2009-09-26T21:20:57Z2009-09-26T21:20:57Z<p>Based on the code you've shared, it looks like your <code>touchesMoved:</code> method will only be called for gestures within the tile. At each touch, you move the tile to be centered on that touch, so slow movements will each give an update within the tile -- and the tile will "catch up" with the fingertip -- before the gesture exits the tile. When a gesture is faster, however, the (x,y) touchesMoved events will be farther apart, and you'll lose the gesture when one (x,y) point is far enough away from the last one that it is outside of the tile already.</p>
<p>You can work around this by capturing the movements in a superview large enough to cover the whole draggable area, and controlling the movement of the tile from within that superview.</p>
<p>By the way, is there a reason you're overriding the hitTest: method? It might be easier (and possibly more efficient?) to use the built-in implementation.</p>
http://stackoverflow.com/questions/1479576/viewdidload-not-called-in-subclassed-uiviewcontroller/1479827#14798271Answer by Tyler for -viewDidLoad not called in subclassed UIViewControllerTyler2009-09-25T22:24:34Z2009-09-25T22:24:34Z<p>I have not found documentation to back up the following, but this is what I've deduced by experiment / experience:</p>
<p>The <code>viewDidLoad</code> method is expected be called immediately after <code>loadView</code> is called, and it's up to whomever calls <code>loadView</code> to supply the extra call to <code>viewDidLoad</code>.</p>
<p>In some cases, the SDK will handle this behavior for you. Suppose you have a subclass of <code>UIViewController</code> called <code>MyViewController</code>; then:</p>
<ul>
<li>If you access <code>myViewController.view</code> before you call <code>loadView</code>, then the superclass accessor is smart enough to call <code>loadView</code> for you, and <code>viewDidLoad</code> immediately thereafter.</li>
</ul>
<p>As a result, if your code looks like this:</p>
<pre><code>MyViewController *myViewController = [[MyViewController alloc] init];
[superView addSubview:myViewController.view]; // Calls viewDidLoad.
</code></pre>
<p>then both <code>loadView</code> and <code>viewDidLoad</code> will be called on your behalf.</p>
<p>However, if your code looks like this:</p>
<pre><code>MyViewController *myViewController = [[MyViewController alloc] init];
[myViewController loadView];
[superView addSubview:myViewController.view]; // Doesn't call viewDidLoad.
</code></pre>
<p>then the <code>view</code> getter can see you've already loaded the view, and it assumes you also called <code>viewDidLoad</code> as well - so it doesn't call either. Ironically, the extra function call here prevents <code>viewDidLoad</code> from getting called.</p>
http://stackoverflow.com/questions/1472878/detecting-horizontal-swipes-in-a-uiscrollview-with-a-vertical-scroll/1473794#14737940Answer by Tyler for Detecting horizontal swipes in a UIScrollView with a vertical scroll.Tyler2009-09-24T19:48:47Z2009-09-24T19:48:47Z<p><code>UIScrollView</code> tries to figure out which touches to pass through to its contents, and which are scrolls, based on movement immediately after a touch begins. Basically, if the touch appears to be a scroll right away, it handles that gesture and the contents never see it; otherwise, the gesture gets passed through (with a very short delay for the first touch).</p>
<p>In my experience, I've been able to capture horizontal swipes in the contents of a <code>UIScrollView</code> that handled vertical-only scrolling -- it basically just worked by default for me. I did this by setting the <code>contentSize</code> to be the same as the width of the scroll view's <code>frame</code>, which is enough information to tell the <code>UIScrollView</code> that it won't be handling horizontal scrolling.</p>
<p>It sounds like you're having trouble with the default behavior, though. One hardware gotcha is that it's very hard to simulate a finger swipe on a laptop's trackpad. If I were you, I would test out the default <code>UIScrollView</code> setup using either a mouse or, preferably, on the device itself. I found that these input methods work much better for conveying swipes.</p>
<p>If that doesn't work, here is a very pertinent paragraph from Apple's <code>UIScrollView</code> docs:</p>
<blockquote>
<p>Because a scroll view has no scroll bars, it must know whether a touch signals an intent to scroll versus an intent to track a subview in the content. To make this determination, it temporarily intercepts a touch-down event by starting a timer and, before the timer fires, seeing if the touching finger makes any movement. If the time fires without a significant change in position, the scroll view sends tracking events to the touched subview of the content view. If the user then drags their finger far enough before the timer elapses, the scroll view cancels any tracking in the subview and performs the scrolling itself. Subclasses can override the <a href="http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIScrollView%5FClass/Reference/UIScrollView.html#//apple%5Fref/occ/instm/UIScrollView/touchesShouldBegin%3AwithEvent%3AinContentView%3A" rel="nofollow">touchesShouldBegin:withEvent:inContentView:</a>, <a href="http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIScrollView%5FClass/Reference/UIScrollView.html#//apple%5Fref/occ/instp/UIScrollView/pagingEnabled" rel="nofollow">pagingEnabled</a>, and <a href="http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIScrollView%5FClass/Reference/UIScrollView.html#//apple%5Fref/occ/instm/UIScrollView/touchesShouldCancelInContentView%3A" rel="nofollow">touchesShouldCancelInContentView:</a> methods (which are called by the scroll view) to affect how the scroll view handles scrolling gestures.</p>
</blockquote>
<p>In summary, you could try what they suggest by subclassing <code>UIScrollView</code> and overriding the suggested methods.</p>
http://stackoverflow.com/questions/1458365/c-multiple-inheritance-and-objective-c-is-this-is-a-bug-in-gcc/1458599#14585992Answer by Tyler for C++ multiple inheritance and Objective-C. Is this is a bug in GCC? Tyler2009-09-22T07:26:12Z2009-09-22T07:34:35Z<p>It's because you're trying to call virtual methods on an object before the constructor is done executing.</p>
<p>I did a test using your first method, just moving the</p>
<pre><code>[foo_ do_foo];
[bar_ do_bar];
</code></pre>
<p>methods outside the constructor, and it worked for me.</p>
<p><strong>Added</strong> This is basically item 9 from Scott Meyers' Effective C++:
<a href="http://www.artima.com/cppsource/nevercall.html" rel="nofollow"><em>Never call virtual functions during construction or destruction.</em></a></p>
<p>The Meyster would probably have a fit about your destructors being non-virtual as well (item 7).</p>
<p>Usually I get annoyed when people quote Meyers to me, but in this case I hope it's mostly helpful!</p>
http://stackoverflow.com/questions/1449698/confusion-with-header-and-implementation-files-in-objective-c/1449910#14499106Answer by Tyler for Confusion with header and Implementation files in Objective-CTyler2009-09-20T00:22:38Z2009-09-20T05:39:45Z<p>I'll answer your questions below, but perhaps the best way to learn this stuff is to read some user-friendly notes intended for folks new to the language, such as <a href="http://cocoadevcentral.com/d/learn%5Fobjectivec/" rel="nofollow">the Learn Objective-C tutorial</a> over at <a href="http://cocoadevcentral.com/" rel="nofollow">cocoadevcentral</a>.</p>
<p><strong>An example</strong></p>
<p>I'd like to help answer your questions with an example (I love learning by example). Let's say you're a teacher writing a program that asks students a particular yes/no question, and keeps track of how many get it correct and how many students it has asked.</p>
<p>Here is a possible interface for this class:</p>
<pre><code>@interface Question : NSObject {
NSString* questionStr;
int numTimesAsked;
int numCorrectAnswers;
}
@property (nonatomic, retain) NSString* questionStr;
@property (nonatomic, readonly) int numTimesAsked;
@property (nonatomic) int numCorrectAnswers;
@property (nonatomic) int numWrongAnswers;
- addAnswerWithTruthValue: (BOOL) isCorrect;
@end
</code></pre>
<p>The three variables inside the braces are <em>instance variables</em>, and every instance of your class will have its own values for each of those variables. Everything outside the braces but before <code>@end</code> is a declaration of a method (including the <code>@property</code> declarations).</p>
<p><em>(Side note: for many objects, it's useful to have <code>retain</code> properties, since you want to avoid the overhead of copying the object, and make sure it isn't released while you're using it. It's legal to <code>retain</code> an <code>NSString</code> as in this example, but <a href="http://stackoverflow.com/questions/387959/nsstring-property-copy-or-retain">it is often considered good practice to use <code>copy</code> instead of <code>retain</code></a> since an <code>NSString*</code> might actually point to an <code>NSMutableString</code> object, which may later change when your code expects it to stay the same.)</em></p>
<p><strong>What <code>@property</code> does</strong></p>
<p>When you declare a <code>@property</code>, you're doing two things:</p>
<ol>
<li>Declaring a setter and getter method in the class's interface, and</li>
<li>Indicating how the setter and getter behave.</li>
</ol>
<p>For the first one, it's enough to know that this line:</p>
<pre><code>@property (nonatomic, retain) NSString* questionStr;
</code></pre>
<p>is basically the same as this:</p>
<pre><code>- (NSString*) questionStr; // getter
- (void) setQuestionStr: (NSString) newQuestionStr; // setter
</code></pre>
<p>in the header. You literally are declaring those two methods; you can call them directly, or use the dot notation as a shortcut to call them for you.</p>
<p>The "basically" part in "basically the same" is the extra info given by keywords like <code>nonatomic</code> and <code>retain</code>.</p>
<p>The <code>nonatomic</code> keyword indicates that they're not necessarily thread-safe. The common <code>retain</code> keyword indicates that the object retains any value that's set, and releases previous values as they're let go.</p>
<p>For example:</p>
<pre><code>// The correct answer to both questions is objectively YES.
Question* myQuestion = [[Question alloc] init];
NSString* question1 = [[NSString alloc] initWithString:@"Is pizza tasty?"];
// question1 has retain count of 1, from the call to alloc
myQuestion.questionStr = question1;
// question1 now has a retain count of 2
NSString* question2 = [[NSString alloc] initWithString:@"Free iPhone?"];
myQuestion.questionStr = question2;
// question1 has a retain count of 1, and question2 has retain count of 2
</code></pre>
<p>If the <code>@property</code> declaration for <code>questionStr</code> had been <code>assign</code> instead, then all the <code>myQuestion.questionStr =</code> statements would not have made any changes at all to the retain counts.</p>
<p>You can <a href="http://developer.apple.com/iphone/library/documentation/Cocoa/Conceptual/ObjectiveC/Articles/ocProperties.html#//apple%5Fref/doc/uid/TP30001163-CH17" rel="nofollow">read a little more about properties here</a>.</p>
<p><strong>What <code>IBOutlet</code> and <code>IBAction</code> do</strong></p>
<p>These are basically no-op words which act only as a way to tell Interface Builder which pieces of the header file to pay attention to. <code>IBOutlet</code> literally becomes an empty string when the compiler looks at it, and <code>IBAction</code> becomes the <code>void</code> return value. We do need them to work with Interface Builder, though, so they are important -- just not to the compiler.</p>
<p><strong>Quick note on C structs and arrow vs dot notation</strong></p>
<p>By the way, the data part of an Objective-C object is very similar to a C struct. If you have a pointer to a C struct, you can use arrow notation <code>-></code> to refer to a specific part of the struct, like this:</p>
<pre><code>struct MyStructType {
int i;
BOOL b;
};
struct MyStructType* myStruct;
myStruct->i = 3;
myStruct->b = TRUE; // or YES in Objective-C.
</code></pre>
<p>This same syntax works the same way in Objective-C:</p>
<pre><code>Question* question = [[Question alloc] init];
question->questionStr = @"Is this a long answer?"; // YES
</code></pre>
<p>But when you do this, there is <em>no</em> method call happening behind the scenes, unlike the dot notation. With the dot notation, you're calling the setter (or getter if there's no = afterwards), and these two lines are the same:</p>
<pre><code>question.questionStr = @"Chocolate?";
[question setQuestionStr:@"Chocolate?"];
</code></pre>
<p>It's often a good idea to avoid the arrow notation in favor of the dot notation, since the dot notation lets you enforce valid state -- for example, that the pointers your class has are always retained. You can even disallow others from using the arrow notation by declaring your instance variables as <code>@private</code>; they can still use the getter and setter to access it, if you declare a <code>@property</code> for it.</p>
<p><strong>What @synthesize does</strong></p>
<p>Now, when you get around to actually implementing your class, <code>@synthesize</code> says something like "make sure the getter and setter get implemented for this property." It does <em>not</em> say "implement both of these for me," because the compiler is polite enough to check for your own implementation first, and only fill in the pieces you've missed. You don't have to use <code>@synthesize</code> at all, even if you use <code>@property</code> out the wazoo -- you could always just provide your implementations for your setters and getters, if you're into that sort of thing.</p>
<p>You probably noticed in the <code>Question</code> interface above that there's a property which is <em>not</em> an instance variable (<code>numWrongAnswers</code>), which is fine because you're just declaring methods. In the example code here, you can see how this actually works:</p>
<pre><code>@implementation Question
@synthesize questionStr, numTimesAsked, numCorrectAnswers;
- (void) setNumCorrectAnswers: (int) newCorrectAnswers {
// We assume the # increases, and represents new answers.
int numNew = newCorrectAnswers - numCorrectAnswers;
numTimesAsked += numNew;
numCorrectAnswers = newCorrectAnswers;
}
- (int) numWrongAnswers {
return numTimesAsked - numCorrectAnswers;
}
- (void) setNumWrongAnswers: (int) newWrongAnswers {
int numNew = newWrongAnswers - self.numWrongAnswers;
numTimesAsked += numNew;
}
- (void) addAnswerWithTruthValue: (BOOL) isCorrect {
if (isCorrect) {
self.numCorrectAnswers++;
} else {
self.numWrongAnswers++;
}
}
@end
</code></pre>
<p>One thing that's happening here is we're faking an instance variable called <code>numWrongAnswers</code>, which would be redundant information if we stored it in the class. Since we know <code>numWrongAnswers</code> + <code>numCorrectAnswers</code> = <code>numTimesAsked</code> at all times, we only need to store any two of these three data points, and we can always think in terms of the other one by using the two values we do know. The point here is to understand that a <code>@property</code> declaration is really just about declaring a setter and getter method, which usually corresponds to an actual instance variable -- but not always. The <code>@synthesize</code> keyword by default <em>does</em> correspond to an actual instance variable, so that it's easy for the compiler to fill in the implementation for you.</p>
<p><strong>Reasons to have separate <code>.h</code> and <code>.m</code> files</strong></p>
<p>By the way, the whole point of declaring methods in one file (the <code>.h</code> header file) and defining their implementation in another (the <code>.m</code> or methods file) is to help decouple the code. For example, if you only update one <code>.m</code> file in your project, you don't have to recompile the other <code>.m</code> files, since their object code will remain the same -- this saves time. Another advantage is that you can use a library that includes only header files and pre-compiled object code, or even dynamic libraries where you need the header file so the compiler is aware of which methods exist, but those methods aren't even linked in with your executable file. These advantages are hard to appreciate when you first start coding, but just the logical breakdown and encapsulation of implementation becomes useful after a short while.</p>
<p>I hope that's helpful!</p>
http://stackoverflow.com/questions/1448207/how-to-load-an-xib/1448265#14482651Answer by Tyler for How to load an XIB?Tyler2009-09-19T10:07:10Z2009-09-19T10:07:10Z<p>When you call <code>[AboutViewController init]</code>, it's expected to call some form of <code>[super init]</code>, which is a synonym for <code>[UIViewController init]</code>. When this happens, your view controller will automatically look for a nib file called (in your case) <code>AboutViewController.xib</code>. If it finds that file, it loads it's contents into your view controller for you.</p>
<p>So basically, all you need to do is initialize your view controller, and make sure it has the same name as the associated nib file.</p>
<p>If you wanted to load a nib file with a different name into your view controller, you could explicitly call <a href="http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIViewController%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/UIViewController/initWithNibName%3Abundle%3A" rel="nofollow"><code>initWithNibName:bundle:</code></a> with the name of whichever nib file you like.</p>
<p>If the standard init (with a same-name nib file) isn't working for you, there are a couple things you could check.</p>
<ul>
<li>the spelling of the class name is the same as the spelling (and case) of the nib file</li>
<li>the nib file is included in the project, and not just sitting in the same directory</li>
<li>your <code>UIViewController</code> subclass's init method does also call <code>[super init]</code></li>
<li>you are calling your <code>UIViewController</code> subclass's init method</li>
<li>you are indeed making your view controller's view visible</li>
</ul>
http://stackoverflow.com/questions/1448200/iphone-sdk-sending-receiving-data-with-server/1448254#14482542Answer by Tyler for IPhone SDK Sending/Receiving Data with ServerTyler2009-09-19T09:56:49Z2009-09-19T09:56:49Z<p>If you want to minimize your coding, you can get a quick HTTP reply from your server with a method call like this:</p>
<pre><code>NSURL* url = [NSURL URLWithString:@"http://mysite.com/my_page.html"];
NSStringEncoding encoding;
NSError* error = nil;
NSString* pageData = [NSString stringWithContentsOfURL:url
usedEncoding:&encoding error:&error];
// Now pageData is a string with the html from that URL, or error will indicate
// any network error that occurred.
</code></pre>
<p><code>NSData</code> has a similar method called <a href="http://developer.apple.com/iphone/library/documentation/Cocoa/Reference/Foundation/Classes/NSData%5FClass/Reference/Reference.html#//apple%5Fref/occ/clm/NSData/dataWithContentsOfURL%3Aoptions%3Aerror%3A" rel="nofollow"><code>dataWithContentsOfURL:options:error:</code></a> which can handle getting binary data from a server. Both of these approaches are synchronous, meaning your code becomes blocked while it is awaiting a response from the server - at least until the timeout hits, or an error is detected.</p>
<p>For asynchronous network communications, you can use other methods in <code>NSURLConnection</code>, which also works with companion classes <code>NSURLRequest</code>, <code>NSURLResponse</code> and <code>NSURL</code>. The quickest way to learn this is to glance through <a href="http://developer.apple.com/iphone/library/documentation/Cocoa/Reference/Foundation/Classes/NSURLConnection%5FClass/Reference/Reference.html" rel="nofollow">the <code>NSURLConnection</code> docs</a>. Here's <a href="http://bynomial.com/moriarty/HTTPHelper.m.txt" rel="nofollow">some example code of how to write an asynchronous HTTP get</a> using these classes.</p>
<p>I'm assuming you have mainly HTTP transfers in mind, for which the above classes can handle
most interactions, including different HTTP request types (e.g. post vs get), different encoding types or binary data, allowing your app to handle each packet as it arrives, hooking into http-level redirects, setting a custom timeout, etc.</p>
<p>There are still more ways to communicate, such as using <a href="http://developer.apple.com/iphone/library/documentation/Networking/Conceptual/NSNetServiceProgGuide/Articles/PublishingServices.html" rel="nofollow">Bonjour</a>, which assists with server-less setups (such as two iPhones sharing a wi-fi connection); or <a href="http://developer.apple.com/iphone/library/documentation/NetworkingInternet/Conceptual/GameKit%5FGuide/Introduction/Introduction.html" rel="nofollow">Game Kit</a>, which can handle peer-to-peer bluetooth connections, and has support designed for in-game voice communications.</p>
http://stackoverflow.com/questions/1447196/nslocale-is-mostly-empty-where-are-the-attributes/1447351#14473511Answer by Tyler for NSLocale is mostly empty - where are the attributes?Tyler2009-09-19T00:37:48Z2009-09-19T00:37:48Z<p>Here is one way to tell if the user has set their time format to a 12- or 24-hour format:</p>
<pre><code>NSDateFormatter* formatter = [[[NSDateFormatter alloc] init] autorelease];
[formatter setTimeStyle:NSDateFormatterMediumStyle];
// Look for H (24-hour format) vs. h (12-hour format) in the date format.
NSString* dateFormat = [formatter dateFormat];
BOOL using24HourClock = [dateFormat rangeOfString:@"h"].location == NSNotFound;
</code></pre>
http://stackoverflow.com/questions/1445967/how-to-efficiently-find-a-rect-some-x-y-point-with-iphone-sdk/1446206#14462061Answer by Tyler for how to efficiently find a rect @ some x,y point with iphone sdkTyler2009-09-18T18:32:37Z2009-09-18T18:32:37Z<p>It's useful to have the rects you want as final targets set up as subviews as a larger <code>UIView</code> (or subclass) where you expect all these related hits to occur. For example, if you're building your own keyboard, you could add a bunch of <code>UIButton</code> objects as subviews and hit test those.</p>
<p>So, the easy and traditional way of hit testing a bunch of subviews is to simply have code triggered by someone hitting those buttons. For example, you could add the subviews as <code>UIControl</code> objects (which is a subclass of <code>UIView</code> that adds some useful methods for catching user touch events), and call <code>addTarget:action:forControlEvents:</code> to specify some method to be triggered when the user does something in the rect of that <code>UIControl</code>. For example, you can catch things like <code>UIControlEventTouchDown</code> or <code>UIControlEventTouchDragEnter</code>. You can read the complete list in <a href="http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIControl%5FClass/Reference/Reference.html#//apple%5Fref/doc/c%5Fref/UIControlEvents" rel="nofollow">the <code>UIControl</code> class reference</a>.</p>
<p>Now, it sounds like you might be going for something even more customized. If you really want to start with a random (x,y) coordinate and know which rect it's in, you can also use <a href="http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIView%5FClass/UIView/UIView.html#//apple%5Fref/occ/instm/UIView/hitTest%3AwithEvent%3A" rel="nofollow">the <code>hitTest:withEvent:</code> method of <code>UIView</code></a>. This method takes a point in a view, and finds the most detailed (lowest in the hierarchy) subview which contains that point.</p>
<p>If you want to use these subviews purely for hit testing and not for displaying, then you can set their background color to <code>[UIColor clearColor]</code>, but don't hide them (i.e. set the <code>hidden</code> property to <code>YES</code>), disable user interaction with them (via the <code>userInteractionEnabled</code> BOOL property), or set the alpha below 0.1, since any of those things will cause the <code>hitTest:withEvent:</code> method to skip over that subview. But you can still use an invisible subview with this method call, as long as it meets these criteria.</p>
http://stackoverflow.com/questions/1442083/drag-uilabel-from-point-a-to-point-b/1442197#14421972Answer by Tyler for Drag UILabel from point A to point BTyler2009-09-18T01:30:14Z2009-09-18T01:30:14Z<p>Basically, you would need to build the functionality yourself. You could do this by <a href="http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIResponder%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/UIResponder/touchesBegan%3AwithEvent%3A" rel="nofollow">listening to touches</a> in a superview that includes the full draggable area. The method <a href="http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIView%5FClass/UIView/UIView.html#//apple%5Fref/occ/instm/UIView/hitTest%3AwithEvent%3A" rel="nofollow"><code>hitTest:withEvent:</code></a> can tell you if the touch down point is in the label to be dragged.</p>
<p>From there, you can override the <a href="http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIResponder%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/UIResponder/touchesMoved%3AwithEvent%3A" rel="nofollow"><code>touchesMoved:withEvent:</code></a> method to update the position of the <code>UILabel</code> to keep it aligned with the finger. Updating the position of the label will automatically redraw it for you.</p>
<p><a href="http://stackoverflow.com/questions/979555/iphone-drag-drop">Here's a relevant question for iphone drag/drop</a>.</p>
<p>Once you get the dragging working, I would also recommend paying attention to the location within the <code>UILabel</code> where the first touch was made, and handle the repositioning in such a way that the finger is always on that point within the <code>UILabel</code>. An easier-to-code but worse-looking version is to simply reposition, say, the upper-left corner of the label to be where the finger is, but this could make the label appear to jump when it first starts dragging.</p>
<p>It may sound intimidating, but it's really not that bad -- just a few lines of code in total. Unless you have views that might overlap. That's another few lines, depending on how you want to handle it.</p>
http://stackoverflow.com/questions/1441706/uitableview-cell-font-size/1441758#14417582Answer by Tyler for UITableView cell font sizeTyler2009-09-17T23:04:20Z2009-09-17T23:04:20Z<p>Yep:</p>
<pre><code>UILabel* myLabel = /* init the label */
myLabel.adjustsFontSizeToWidth = YES;
myLabel.minimumFontSize = 10; // Float value, in pixels (int value recom'd).
</code></pre>
<p>You can read more in <a href="http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UILabel%5FClass/Reference/UILabel.html#//apple%5Fref/occ/instp/UILabel/adjustsFontSizeToFitWidth" rel="nofollow">Apple's <code>UILabel</code> docs</a>.</p>
http://stackoverflow.com/questions/1436846/input-text-on-uiimageview/1437111#14371111Answer by Tyler for Input text on UIImageViewTyler2009-09-17T06:51:40Z2009-09-17T21:45:40Z<p><code>UIImageView</code> is not designed to hold any text, but you could add a <code>UILabel</code> or <code>UITextField</code> either within it or on top / below it, depending on what you want to do.</p>
<p>For example, suppose you want to allow the user to edit a piece of text inside an image. You could do something like this:</p>
<pre><code>UIImage* image = [UIImage imageNamed:@"my_image.png"];
UIImageView* imageView = [[UIImageView alloc] initWithImage:image];
imageView.userInteractionEnabled = YES;
UITextField* textField = [[UITextField alloc]
initWithFrame:CGRectMake(10, 10, 50, 20)];
textField.placeholder = @"type here";
[imageView addSubview:textField];
// You might also want to set the imageView's frame.
[self.view addSubview:imageView];
</code></pre>
<p>If you add a <code>UITextField</code> as a subview of a <code>UIImageView</code>, it's important to set the <code>userInteractionEnabled</code> to <code>YES</code>, since it defaults to <code>NO</code> for that superview (it's usually <code>YES</code> by default in most <code>UIView</code>s).</p>
<p><strong>Addendum</strong></p>
<p>If you want the user to be able to click anywhere in the image to edit the text, here is one way to do it: subclass <code>UIControl</code> and add a <code>UIImageView</code> and a <code>UITextField</code> as subviews of it, and connect the clicking action of the <code>UIControl</code> to the <code>UITextField</code>. Something like this (WARNING: not tested code, but it conveys the general idea):</p>
<pre><code>@interface ImageAndTextView : UIControl {
UIImageView* imageView;
UITextField* textField;
}
@property (nonatomic, retain) UIImageView* imageView;
@property (nonatomic, retain) UITextField* textField;
- (void) click;
@end
@implementation ImageAndTextView
@synthesize imageView, textField;
- (id) initWithFrame: (CGRect) frame_ {
if (self = [super initWithFrame:frame_]) {
UIImage* image = [UIImage imageNamed:@"my_image.png"];
self.imageView = [[[UIImageView alloc] initWithImage:image] autorelease];
imageView.userInteractionEnabled = YES;
[self addSubview:imageView];
CGRect textFrame = CGRectMake(10, 10, 50, 20); // whatever frame you want
self.textField = [[[UITextField alloc]
initWithFrame:textFrame] autorelease];
[self addSubview:textField];
// Now register an event to happen if the user clicks anywhere.
[self addTarget:self action:@selector(click)
forEvent:UIControlEventTouchUpInside];
}
return self;
}
- (void) click {
[textField becomeFirstResponder];
}
@end
</code></pre>
http://stackoverflow.com/questions/1436755/image-caching-problem/1437166#14371660Answer by Tyler for Image Caching ProblemTyler2009-09-17T07:08:26Z2009-09-17T07:08:26Z<p>It sounds like you're just running out of memory, and probably not in the code you've shared.</p>
<p>Image files are memory-hungry, especially if they are larger than the resolution of the screen.</p>
<p>Read all about <a href="http://stackoverflow.com/questions/1282830/uiimagepickercontroller-uiimage-memory-and-more">UIImagePickerController, UIImage, Memory and More!</a> for more detail about the memory cost of images and ways to work around that.</p>
http://stackoverflow.com/questions/1437077/using-xcode-3-2-which-performance-tool-to-see-how-much-memory-my-iphone-app-is-u/1437128#14371282Answer by Tyler for Using Xcode 3.2, which performance tool to see how much memory my iPhone app is using?Tyler2009-09-17T06:56:25Z2009-09-17T06:56:25Z<p>The default (and a very good) tool is Instruments, which comes with the SDK. Here is <a href="http://developer.apple.com/iphone/library/documentation/DeveloperTools/Conceptual/InstrumentsUserGuide/Introduction/Introduction.html" rel="nofollow">Apple's doc on Instruments</a>.</p>
<p>Memory usage on the simulator is generally the same, although if you are using OpenGL ES, the simulator has significantly less memory errors (and better performance) on the simulator. So the general rule of thumb is: it's ok to test your memory on the simulator, except for OpenGL ES usage.</p>
http://stackoverflow.com/questions/1430252/objective-c-iphone-windows-view-not-responding-to-button-clicks/1430388#14303880Answer by Tyler for Objective-C/iPhone: Windows' view not responding to button clicks!!! Tyler2009-09-16T01:00:49Z2009-09-16T01:00:49Z<ol>
<li>If the dismiss method call is in the modal view controller (not the parent that presents it), then you actually want to call <code>[self.parentController dismissModalViewControllerAnimated:YES];</code></li>
<li>There are a number of reasons why things might not be responding to your touches. Here are two that have happened to me:
<ul>
<li>The frame of the view you want to touch is too small. <code>UIView</code>s can draw outside of their frames, so it might look ok, but not respond if the touch is technically outside of the frame -- you also have to check that all the superview's up the hierarchy also have a large enough frame.</li>
<li>If anything in your view is a <code>UIImageView</code> or child thereof, it won't respond to user touches because <code>UIImageView</code> has <code>userInteractionEnabled</code> set to <code>NO</code> by default. You can fix this just by setting <code>myImageView.userInteractionEnabled = YES;</code></li>
</ul></li>
</ol>
http://stackoverflow.com/questions/1424210/iphone-development-pointer-being-freed-was-not-allocated/1424489#14244895Answer by Tyler for iPhone development: pointer being freed was not allocatedTyler2009-09-15T00:04:21Z2009-09-15T18:09:46Z<p>It looks like you have a corrupted memory bug, and it is probably not in this code. Corrupted memory bugs are my second most-fun bugs, partially because they are often non-deterministic, and the symptoms (aka the crashes) usually happen <em>long after</em> the actual bug hit.</p>
<p>There are two main types of memory bugs:</p>
<ol>
<li>Allocating more than you free.</li>
<li>Freeing more than you allocate.</li>
</ol>
<p>In this case it looks like you're freeing too much, which is the easier case to see (b/c it can crash earlier) but the harder to track down.</p>
<p>Here is a strategy you can use to help find an extra deallocations:</p>
<ul>
<li>Turn off some of your deallocations.</li>
<li>See if the crash still occurs.</li>
</ul>
<p>Ideally, you can find one single deallocation command which, when removed, will allow your code to work correctly. It might be useful to try a binary search approach, if that is practical for your codebase. If it's a large codebase, hopefully you're using version control and you can try to focus on the recent diff's.</p>
<p>Keep in mind that deallocations can be invoked in several different ways here. Most likely, you're calling <code>release</code> and <code>autorelease</code> on objects. It's also possible you might be explicitly calling <code>dealloc</code> (which is usually a mistake, though). And of course you might even be explicitly calling <code>free</code> directly.</p>
<p>Once you've gotten rid of the extra deallocations, it's a good idea to also check for memory leaks (aka extra allocations). You can do this by using Instruments and other tools. A good place to start is by reading <a href="http://developer.apple.com/iphone/library/documentation/Xcode/Conceptual/iphone%5Fdevelopment/130-Debugging%5FApplications/debugging%5Fapplications.html#//apple%5Fref/doc/uid/TP40007959-CH7-SW3" rel="nofollow">Finding Memory Leaks</a> in the iPhone development guide.</p>
<p><strong>Added:</strong> It's also a good idea to set a pointer to <code>nil</code> right after you've released it and are done using it. This way, if you call <code>[objectPtr release];</code> later, it won't do anything.</p>
<p>(PS Btw, my #1 most-fun bug type is memory corruption in mutlithreaded code. I had one of those once in a multi-million line code base.)</p>
http://stackoverflow.com/questions/1428338/iphone-devnstableview-and-nsmutablyarray-and-file-names-have-exebad-access/1428443#14284430Answer by Tyler for iphone dev:NSTableView and NSMutablyArray and File Names have exe_bad accessTyler2009-09-15T17:07:03Z2009-09-15T17:07:03Z<p>When do you allocate <code>books</code> ?</p>
<p>I don't see the allocation in this code, but presumably you have it before the line <code>[books addObject:file]</code>, since otherwise you might see the exception there.</p>
<p>If you do have the allocation somewhere, you might accidentally be doing something like:</p>
<pre><code>books = [NSMutableArray array];
</code></pre>
<p>This is not the right way to do it, though, since that gives you a <em>temporary</em> <code>NSMutableArray</code>, and you want to use it for the lifetime of your object. There are multiple ways to do this; one is:</p>
<pre><code>books = [[NSMutableArray alloc] init];
</code></pre>
<p>which gives <code>books</code> a retain count of 1, and <code>books</code> will not be deallocated until someone (hopefully you or a good friend) releases it. You probably want to add a call to <code>[books release];</code> in your <code>dealloc</code> method to clean up that memory later.</p>
<p>Reference: <a href="http://developer.apple.com/iphone/library/documentation/Cocoa/Conceptual/MemoryMgmt/Articles/mmRules.html#//apple%5Fref/doc/uid/20000994-BAJHFBGH" rel="nofollow">The memory management programming guide for cocoa: mem. mgt. rules</a></p>
http://stackoverflow.com/questions/1425754/iphone-sdkremove-white-spaces-from-a-paragraph-string/1425926#14259261Answer by Tyler for iPhone-SDK:Remove white spaces from a paragraph string?Tyler2009-09-15T08:40:50Z2009-09-15T08:40:50Z<p>It sounds like you have single spaces between words that you want to keep, but you might want to get rid of a series of many spaces between paragraphs. There are multiple ways to do this, but here is one that's easy to code:</p>
<pre><code>NSMutableString* newStr = [NSMutableString stringWithString:oldStr];
NSUInteger numReplacements;
do {
NSRange fullRange = NSMakeRange(0, [newStr length]);
numReplacements = [newStr replaceOccurrencesOfString:@" " withString:@" "
options:0 range:fullRange];
} while(numReplacements > 0);
</code></pre>
<p>Read about the <a href="http://developer.apple.com/iphone/library/documentation/Cocoa/Reference/Foundation/Classes/NSMutableString%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/NSMutableString/replaceOccurrencesOfString%3AwithString%3Aoptions%3Arange%3A" rel="nofollow"><code>replaceOccurrencesOfString:withString:options:range:</code></a> method (of <code>NSMutableString</code>) to see some details.</p>
<p>This is not the most efficient, but it works, and if you're only working with a small number of not-huge strings, the speed of execution won't be significant.</p>
<p>By the way, you need to do the replacement multiple times because, for example, doing it just once could replace four consecutive spaces by two consecutive spaces, and you'd still be left with multiple spaces.</p>
http://stackoverflow.com/questions/1424822/working-with-time-in-the-iphone/1424841#14248411Answer by Tyler for Working with time in the iPhoneTyler2009-09-15T02:29:34Z2009-09-15T02:29:34Z<p>I'm assuming you have 3 values for each time, something like:</p>
<pre><code>struct TimePoint {
int minutes;
int seconds;
int milliseconds;
};
</code></pre>
<p>If that's right, here is some code to calculate the difference:</p>
<pre><code>// input is struct TimePoint t1, t2.
NSTimeInterval time1 = 60 * t1.minutes + t1.seconds + 0.001 * t1.milliseconds;
NSTimeInterval time2 = 60 * t2.minutes + t2.seconds + 0.001 * t2.milliseconds;
NSTimeInterval timeDifference = time1 - time2;
</code></pre>
<p>It sounds like you've also been considering working with <code>NSDate</code> objects. If you want to do that - suppose you want to see how much time has passed from <code>NSDate* date1</code> to <code>NSDate* date2</code> -- then you could use the following method (<a href="http://developer.apple.com/iphone/library/documentation/Cocoa/Reference/Foundation/Classes/NSDate%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/NSDate/timeIntervalSinceDate%3A" rel="nofollow">docs</a>):</p>
<pre><code>NSTimeInterval timeDiff = [date2 timeIntervalSinceDate:date1];
// value is a double in seconds; might be negative if date2 was first
</code></pre>
http://stackoverflow.com/questions/1381479/adding-pins-for-nearby-places-e-g-pizzerias-in-mapkit/1855780#1855780Comment by Tyler on Adding pins for nearby places (e.g. pizzerias) in MapKitTyler2009-12-08T15:47:46Z2009-12-08T15:47:46ZNo, I didn't - still interested, though. The link I gave is my best knowledge of how to approach this.http://stackoverflow.com/questions/1540240/html5-cache-manifest-in-a-uiwebview/1864006#1864006Comment by Tyler on Html5 cache manifest in a UIWebView?Tyler2009-12-08T15:46:29Z2009-12-08T15:46:29ZYes I have. It does not cause the cache manifest to work, although you can use that technique to try to create your own cache -- but this is trickier than it sounds like, because the NSURL framework rejects some cached responses for unknown reasons.http://stackoverflow.com/questions/772858/validate-iphone-device-ids/774476#774476Comment by Tyler on Validate iPhone device Ids?Tyler2009-11-18T22:20:55Z2009-11-18T22:20:55ZThis statement is based on a misunderstanding of how modern crypto works. Modern crypto is based on the idea that there are functions which are easy to compute but are hard to invert. For example, in public key crypto, anyone can encrypt a message, but only the recipient can decrypt it. If a only a small fraction of all UDID's are valid, then it would be time-consuming to produce fake ones.http://stackoverflow.com/questions/1540240/html5-cache-manifest-in-a-uiwebview/1672051#1672051Comment by Tyler on Html5 cache manifest in a UIWebView?Tyler2009-11-04T19:35:07Z2009-11-04T19:35:07ZThis doesn't work. Here is how I know: I built a sample file with a cache manifest, and I loaded this file in 3 browsers: (1) Firefox (2) mobile Safari, (3) a UIWebView using NSURLRequestReturnCacheElseLoad (if I use DontLoad then it <i>never</i> loads). Then I modify a cached image on the server. Firefox and Safari both correctly display the old image; my UIWebView gets the new image.http://stackoverflow.com/questions/1246420/need-content-in-uiwebview-to-display-quickly/1247837#1247837Comment by Tyler on Need content in UIWebView to display quicklyTyler2009-10-15T21:56:25Z2009-10-15T21:56:25ZHi leftspin - I've spent a lot of time going through similar trials and tribulations. In some previous code, I believe it actually accepted the cached responses, but now I'm having the same results as you (it is getting my cached response but ignoring it). Any luck since you posted this?http://stackoverflow.com/questions/1549949/segmentation-fault-only-when-i-redirect-stdout-to-dev-null/1549966#1549966Comment by Tyler on Segmentation fault only when I redirect stdout to /dev/null ?Tyler2009-10-11T22:37:58Z2009-10-11T22:37:58ZThanks, Jonathan!http://stackoverflow.com/questions/1549949/segmentation-fault-only-when-i-redirect-stdout-to-dev-nullComment by Tyler on Segmentation fault only when I redirect stdout to /dev/null ?Tyler2009-10-11T06:13:47Z2009-10-11T06:13:47ZNot multithreaded. How do I start gdb on a process with its output redirected? "gdb ./mybinary > /dev/null" also redirects the stdout of gdb.http://stackoverflow.com/questions/1549949/segmentation-fault-only-when-i-redirect-stdout-to-dev-null/1549966#1549966Comment by Tyler on Segmentation fault only when I redirect stdout to /dev/null ?Tyler2009-10-11T06:12:07Z2009-10-11T06:12:07ZGood idea - I've used it a little before. When I run "gdb ./my_binary > /dev/null", though, I also lose the interface for gdb - how can I start gdb on my process with its stdout redirected?http://stackoverflow.com/questions/1488101/how-to-remove-all-the-view-along-with-rootview-from-uinavigationcontroller-in-iph/1488119#1488119Comment by Tyler on How to remove all the view along with rootView from UINavigationController in iPhoneTyler2009-09-28T17:30:15Z2009-09-28T17:30:15ZIf the superview is the only thing retaining the navigation controller, then removeFromSuperView will actually release it (and everything it recursively retains).http://stackoverflow.com/questions/1482117/overlapping-animations-help/1482523#1482523Comment by Tyler on Overlapping animations help!Tyler2009-09-28T15:43:39Z2009-09-28T15:43:39ZDo you know which function of yours the code is executing when it crashes? One idea is to comment out the performSelector line to check if that is the culprit (that would be my first guess).http://stackoverflow.com/questions/1458365/c-multiple-inheritance-and-objective-c-is-this-is-a-bug-in-gcc/1458599#1458599Comment by Tyler on C++ multiple inheritance and Objective-C. Is this is a bug in GCC? Tyler2009-09-22T19:31:04Z2009-09-22T19:31:04ZNo worries, mr. tango! I appreciate a good problem like this. Thanks for posting more details.http://stackoverflow.com/questions/1458365/c-multiple-inheritance-and-objective-c-is-this-is-a-bug-in-gcc/1458599#1458599Comment by Tyler on C++ multiple inheritance and Objective-C. Is this is a bug in GCC? Tyler2009-09-22T08:55:46Z2009-09-22T08:55:46ZUsing variant 1, I can't see a problem any more in my own version of your code (which does not make the calls in the ctor). If you still want further help on variant 1, it would be nice to see what the problem is beyond making virtual calls in the ctor.http://stackoverflow.com/questions/1458365/c-multiple-inheritance-and-objective-c-is-this-is-a-bug-in-gcc/1458603#1458603Comment by Tyler on C++ multiple inheritance and Objective-C. Is this is a bug in GCC? Tyler2009-09-22T07:36:09Z2009-09-22T07:36:09ZPsyche. (same answer same time). Good problem-solving, Martin.http://stackoverflow.com/questions/1457533/what-is-the-fastest-int-to-float-conversion-on-the-iphoneComment by Tyler on What is the fastest int to float conversion on the iPhone?Tyler2009-09-22T00:23:34Z2009-09-22T00:23:34ZWhy do you need to do the conversions? You might get a better answer if you explain more about your end goal. For example, in many situations, you can just leave them as floats the whole time.http://stackoverflow.com/questions/1449698/confusion-with-header-and-implementation-files-in-objective-c/1449910#1449910Comment by Tyler on Confusion with header and Implementation files in Objective-CTyler2009-09-20T05:40:21Z2009-09-20T05:40:21Zgood comments; I added a note about NSString properties and moved the .h/.m thoughts to the end