User lawrence - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T15:24:42Zhttp://stackoverflow.com/feeds/user/56817http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1793041/design-pattern-for-iphone-web-service-functionality/1793430#17934301Answer by lawrence for Design pattern for iPhone -> web service functionality?lawrence2009-11-24T22:38:53Z2009-11-24T22:38:53Z<p>Factories? We don't need no stinkin' factories.</p>
<p>I've done this a few times, and I basically do what you're saying: one object that provides methods for all the web service calls, encapsulating the details of communicating with the service, handling connection issues, etc. In one app it was a singleton, because it needed to keep session state; in another app it was just a collection of static methods. </p>
<p>Along with some formatting of the response data, that's the entirety of its responsibility. </p>
<p>It's left up to the callers is whether the call is synchronous or asynchronous; the class itself is written synchronously, and a caller just uses it in a separate thread if necessary. Cocoa's performSelector... methods make that easy.</p>
http://stackoverflow.com/questions/432793/iphone-uiviewcontroller-not-rotating-when-device-orientation-changes/1719677#17196770Answer by lawrence for iPhone - UIViewController not rotating when device orientation changeslawrence2009-11-12T03:21:04Z2009-11-12T03:21:04Z<p>This may not be the right answer for you, because you don't specify the context that the UIViewController's in, but I just found an important gotcha in the Apple documentation that explains the similar problem I'm having.</p>
<blockquote>
<p>Tab bar controllers support a portrait
orientation by default and do not
rotate to a landscape orientation
unless all of the root view
controllers support such an
orientation. When a device orientation
change occurs, the tab bar controller
queries its array of view controllers.
<strong>If any one of them does not support
the orientation, the tab bar
controller does not change its
orientation.</strong></p>
</blockquote>
http://stackoverflow.com/questions/1703674/wrestling-with-sql2Wrestling with SQLlawrence2009-11-09T20:44:48Z2009-11-09T21:09:28Z
<p>I have this in a MySQL db:</p>
<pre><code>table Message
sender_id int
recipient_id int
created datetime
[title, body, etc... omitted]
</code></pre>
<p>Is it possible to get from this, in a single query, a list of all the users who have been communicating with a given user with id N (meaning N appears in either <code>sender_id</code> or <code>recipient_id</code>), ordered by <code>created</code>, including the most recent value of <code>created</code>, without duplicates (no sender/recipient pairs N, M and M, N)?</p>
<p>I'm pretty sure the answer is No, but I'm having trouble convincing myself. Afternoon mental dullness.</p>
<p>If No, what's the most efficient alternative you would recommend?</p>
<p><hr></p>
<p>EDIT: holy crap, Stack Overflow is hopping these days. 8 answers before I realize I forgot to specify that I would like to have the most-recent value of <code>created</code> present along with the other user ID in each row.</p>
http://stackoverflow.com/questions/1609580/odd-behavior-while-sending-html-email-with-messageui-framework0Odd behavior while sending HTML email with MessageUI.frameworklawrence2009-10-22T19:54:43Z2009-10-22T19:54:43Z
<p>I'm using the MFMessagePickerController, and calling setMessageBody:isHTML. Setting isHTML to YES, of course. However, when the string I'm sending is something like this:</p>
<pre><code><html>look at my image! <img src="http://foo.com/img.jpg"/></html>
</code></pre>
<p>what the recipient gets is just "look at my image!" in plain text. viewing the raw source reveals that the iPhone stripped the tags and sent the message as text/plain.</p>
<p>However, if I make this seemingly insignificant change:</p>
<pre><code><html><b></b>look at my image! <img src="http://foo.com/img.jpg"/></html>
</code></pre>
<p>then the iPhone composes a proper multipart/alternative email with text/plain and text/html sections. </p>
<p>Is it rejecting my document as HTML in the first case because I'm not meeting some format requirement? If so, how does adding the bold tag help?</p>
http://stackoverflow.com/questions/1336879/calling-focus-on-a-text-field-during-a-jquery-ui-dialog-with-tabs-load-breaks/1336995#13369951Answer by lawrence for Calling .focus() on a text field during a jquery-ui dialog-with-tabs load breaks the dialog rendering.lawrence2009-08-26T19:36:00Z2009-08-26T19:36:00Z<p>This smells like a classic concurrency problem to me. You're altering the code while jQuery's working on it, and that's probably breaking some assumption in the code that the state of the DOM will stay stable.</p>
<p>If you want to focus a textfield after the dialog is loaded, the proper way to do it is to put your focus() in a callback method.</p>
<p>Also, do you really mean to wait for 10 <strong>milliseconds</strong> and then focus()?</p>
http://stackoverflow.com/questions/1302229/overlapping-the-tab-bar-in-a-subview0Overlapping the tab bar in a subviewlawrence2009-08-19T19:45:14Z2009-08-19T19:45:14Z
<p>The iPhone keyboard overlaps the tab bar by default, but it also behaves like a subview of the view that is inside the tab bar; for example, if it is open inside a UINavigationController-governed view, and you navigate Back, the keyboard slides away along with the view.</p>
<p>How do I get a UIPickerView to behave like this? It's layered behind the tab bar, so merely changing the position does nothing useful; I can attach it directly to the tab bar's view, but then it doesn't go away automatically with the view inside the UINavigationController.</p>
http://stackoverflow.com/questions/1295325/setting-a-property-on-a-custom-object-through-interface-builder0Setting a property on a custom object through Interface Builderlawrence2009-08-18T17:22:20Z2009-08-19T01:04:33Z
<p>I have a custom UITableViewController subclass which I use in two places in a nib file. What should I do if I want the two instances to have slightly different behavior? Of course in the code I can select one kind of behavior or the other based on the value of a BOOL, but how do I set that BOOL from Interface Builder, without having to write an Interface Builder plugin?</p>
http://stackoverflow.com/questions/1231068/method-delegation-in-javascript-jquery0Method delegation in Javascript/jQuery?lawrence2009-08-05T03:42:21Z2009-08-05T07:19:00Z
<p>I have this code:</p>
<pre><code>var myWidget = $('#myWidget');
</code></pre>
<p>and calls like this elsewhere:</p>
<pre><code>myWidget.hide();
myWidget.slideToggle();
</code></pre>
<p>These work of course because jQuery adds these methods.</p>
<p>Now, let's say I'm doing some refactoring to make myWidget a proper object with its own custom methods and state:</p>
<pre><code>var myWidget = (function() {
// private stuff
var actualJQueryObject = $('#myWidget');
return {
publicMethod: function() {...},
// MAGIC!
}
})()
</code></pre>
<p>but I want to have all the calls that expect a jQuery object, which are all around my code, to <em>still work even though myWidget is no longer a jQuery object</em>, because myWidget knows how to delegate these calls to actualJQueryObject.</p>
<p>Is this possible?</p>
http://stackoverflow.com/questions/873200/memory-management-and-performselectorinbackground2Memory management and performSelectorInBackground:lawrence2009-05-16T20:18:02Z2009-08-01T18:16:48Z
<p>Which is right? This:</p>
<pre><code>NSArray* foo = [[NSArray alloc] initWithObjects:@"a", @"b", nil];
[bar performSelectorInBackground:@selector(baz:) withObject:foo];
- (void)baz:(NSArray*)foo {
...
[foo release];
}
</code></pre>
<p>Or:</p>
<pre><code>NSArray* foo = [[[NSArray alloc] initWithObjects:@"a", @"b", nil] autorelease];
[bar performSelectorInBackground:@selector(baz:) withObject:foo];
- (void)baz:(NSArray*)foo {
NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
...
[pool release];
}
</code></pre>
<p>I know the first one works, but Clang complains about it, so I wonder if there's a better pattern to use.</p>
<p>I would "just try out" the 2nd one, but with autoreleasing, who knows whether the absence of <code>EXC_BAD_ACCESS</code> means that you're doing it right or that you just got lucky...</p>
http://stackoverflow.com/questions/1208299/presenting-a-modal-view-controller-only-after-another-one-has-been-dismissed0Presenting a modal view controller only after another one has been dismissedlawrence2009-07-30T18:06:14Z2009-07-30T19:48:30Z
<p>I can't just do</p>
<pre><code>[myViewController dismissModalViewControllerAnimated:YES];
[myViewController presentModalViewController:nextModalViewController animated:YES];
</code></pre>
<p>one after the other, because then the two animation blocks try to affect the same references simultaneously and things break badly.</p>
<p>So what I need to do is make the latter call only after the first animation has finished. But there's no <code>UIViewControllerDelegate</code> method like <code>didDismissModalViewController</code>. What should I do?</p>
http://stackoverflow.com/questions/1180030/is-this-plan-for-preventing-iphone-app-client-spoofing-sound1Is this plan for preventing iPhone app client spoofing sound?lawrence2009-07-24T20:34:50Z2009-07-24T21:35:25Z
<p>I'm designing an iPhone app that communicates with a server over HTTP.</p>
<p>I only want the app, not arbitrary HTTP clients, to be able to POST to certain URL's on the server. So I'll set up the server to only validate POSTs that include a secret token, and set up the app to include that secret token. All requests that include this token will be sent only over an HTTPS connection, so that it cannot be sniffed. </p>
<p>Do you see any flaws with this reasoning? For example, would it be possible to read the token out of the compiled app using "strings", a hex editor, etc? I wouldn't be storing this token in a .plist or other plain-text format, of course.</p>
<p>Suggestions for an alternate design are welcome.</p>
http://stackoverflow.com/questions/1126732/should-i-provide-lost-credentials-to-users-via-a-direct-message-on-twitter/1127824#11278241Answer by lawrence for Should I provide lost credentials to users via a direct message on Twitter?lawrence2009-07-14T20:27:49Z2009-07-14T20:27:49Z<p>Enough people have pointed out that you shouldn't be storing passwords in plain text anyway, so I won't repeat that.</p>
<p>But if you're sending a one-time-use password-reset link as a Twitter DM, then you have to take into account that the user might receive that message on their mobile phone. </p>
<p>Then you'll have to make sure whatever that link points to is set up to display correctly on mobile phone web browsers. </p>
<p>Then you'll wish you just stuck with email.</p>
http://stackoverflow.com/questions/913171/layout-screws-up-when-i-push-several-controllers-without-animation3Layout screws up when I push several controllers without animationlawrence2009-05-26T22:50:20Z2009-06-07T13:10:29Z
<p>So I have a stack of three UITableViewControllers, each of which displays its view correctly underneath the navigation bar when I tap through the UI manually.</p>
<p>However, now I'm working on restoring state across app restart, and so I'm pushing the same two controllers on top of the root view controller, one at a time, in the same method in the main thread. What ends up happening then is that the middle controller's view is laid out too far down, and the top controller's view is too far up (underneath the nav bar).</p>
<p>Relevant code:</p>
<pre><code>for (int i = 0; i < [controllerState count]-1; i++) {
MyViewController* top = (MyViewController*)navigationController.topViewController;
int key = [[controllerState objectAtIndex:i] integerValue];
[top restoreNextViewController:key]; // this calls pushViewController:
// so top will be different in the next iteration
}
</code></pre>
<p>I suspect that the problem is that I'm not allowing some important UI refresh process to take place in between the two pushes, because they happen in the same thread. It almost looks as though the automatic view adjustment that's supposed to affect the top controller affects the middle one instead. </p>
<p>Is that right? And if so, what should I do, since I do want all the state-restoration to take place immediately upon app start?</p>
<p>EDIT: looks like I was unclear. <code>restoreNextViewController:</code> is a MyViewController subclass method that restores the controller's state based on a stored key, and then pushes the appropriate child controller with <code>[self.navigationController pushViewController:foo animated:NO]</code>. I'm doing this because my actual app, unlike this simplified case, has up to 6 controllers in the stack, and they're not always the same ones. So I figured this would be a cleaner design than going down the stack checking controllers' classes. Each controller already knows how to push a child controller in response to user input; why not reuse that on app restart?</p>
<p>I'm not having any trouble getting the controllers to show up; they're just being laid out strangely.</p>
http://stackoverflow.com/questions/921998/getting-touches-in-uiresponder-api0getting touches in UIResponder APIlawrence2009-05-28T16:56:13Z2009-05-28T18:24:59Z
<p>So, UIResponder has methods like:</p>
<pre><code>- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
</code></pre>
<p>My question is, what's the difference between the <code>touches</code> parameter, and <code>[event allTouches]</code>?</p>
http://stackoverflow.com/questions/913171/layout-screws-up-when-i-push-several-controllers-without-animation/921376#9213760Answer by lawrence for Layout screws up when I push several controllers without animationlawrence2009-05-28T15:12:26Z2009-05-28T15:12:26Z<p>I ended up manually resetting each table view's content inset during its controller's <code>viewWillAppear:</code>.</p>
http://stackoverflow.com/questions/753139/how-would-i-draw-a-line-at-the-bottom-of-a-uinavigationbar0How would I draw a line at the bottom of a UINavigationBar?lawrence2009-04-15T18:49:00Z2009-05-26T17:51:08Z
<p>The design I've been given for an iPhone app I'm working on calls for a 1px red line at the bottom of the navigation bar. I know how to draw a line with Quartz and -drawRect, but how do I get access to the UINavigationBar's view? Or would it work to draw the line in the app's main view, on top of everything else?</p>
<p>Duncan Wilcox's answer below works to get the line drawn, but then buttons on the bar become impossible to press.</p>
<p>If I do [self.navigationItem.titleView.superview sendSubviewToBack:titleView] then buttons that are created in nib files work, but not ones that are dynamically added.</p>
http://stackoverflow.com/questions/753139/how-would-i-draw-a-line-at-the-bottom-of-a-uinavigationbar/911899#9118990Answer by lawrence for How would I draw a line at the bottom of a UINavigationBar?lawrence2009-05-26T17:51:08Z2009-05-26T17:51:08Z<p>This is what I've settled upon:</p>
<pre><code>// UINavigationBar subclass
- (void)drawRect:(CGRect)rect {
UIImage *image = [UIImage imageNamed: @"background_navbar.png"];
[image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
}
</code></pre>
http://stackoverflow.com/questions/460014/can-you-animate-a-height-change-on-a-uitableviewcell-when-selected/832279#8322790Answer by lawrence for Can you animate a height change on a UITableViewCell when selected?lawrence2009-05-06T23:24:36Z2009-05-06T23:24:36Z<p>reloadData is no good because there's no animation...</p>
<p>This is what I'm currently trying:</p>
<pre><code>NSArray* paths = [NSArray arrayWithObject:[NSIndexPath indexPathForRow:0 inSection:0]];
[self.tableView beginUpdates];
[self.tableView insertRowsAtIndexPaths:paths withRowAnimation:UITableViewRowAnimationFade];
[self.tableView deleteRowsAtIndexPaths:paths withRowAnimation:UITableViewRowAnimationFade];
[self.tableView endUpdates];
</code></pre>
<p>It almost works right. Almost. I'm increasing the height of the cell, and sometimes there's a little "hiccup" in the table view as the cell is replaced, as if some scrolling position in the table view is being preserved, the new cell (which is the first cell in the table) ends up with its offset too high, and the scrollview bounces to reposition it.</p>
http://stackoverflow.com/questions/805410/how-do-i-update-the-ui-in-the-middle-of-this-thread1How do I update the UI in the middle of this thread?lawrence2009-04-30T05:11:07Z2009-04-30T05:58:07Z
<p>Below is a block of code that runs in a separate thread from my app's main thread. How do I get the UI to update after each button gets its thumbnail? Right now it doesn't update until the whole method finishes. The buttons are already added to a UIScrollView.</p>
<p>(LotsGridButton is just a UIButton with some extra properties.)</p>
<pre><code>- (void)fetchThumbnails {
CCServer* server = [[CCServer alloc] init];
for (int i=0; i<[buttons count]; i++) {
LotsGridButton* button = [buttons objectAtIndex:i];
if (button.lot.thumbnail) continue;
// load the thumbnail image from the server
button.lot.thumbnail = [server imageWithPath:button.lot.thumbnailURL];
[button setImage:button.lot.thumbnail forState:UIControlStateNormal];
}
[server release];
}
</code></pre>
http://stackoverflow.com/questions/805066/how-to-call-a-parent-classs-method-from-child-class-in-python/805085#8050850Answer by lawrence for How to call a parent class's method from child class in python?lawrence2009-04-30T01:58:46Z2009-04-30T03:52:59Z<p>There's a super() in Python too. It's a bit wonky, because of Python's old- and new-style classes, but is quite commonly used e.g. in constructors:</p>
<pre><code>class Foo(Bar):
def __init__(self):
super(Foo, self).__init__()
self.baz = 5
</code></pre>
http://stackoverflow.com/questions/716460/how-do-you-work-around-a-bug-in-a-specific-version-of-the-cocoa-touch-sdk0How do you work around a bug in a specific version of the Cocoa Touch SDK?lawrence2009-04-04T03:46:46Z2009-04-04T04:03:55Z
<p>Specifically, I'm trying to deal with the bug where, pre-2.2, UINavigationControllers with translucent navigation bars affect their subviews as if they weren't translucent; i.e. they position them too far down.</p>
<p>So I need to know what to test in order to perform "if this build is against a pre-2.2 SDK, fix the view positions."</p>
http://stackoverflow.com/questions/716403/when-is-it-acceptable-to-use-jquery/716478#7164781Answer by lawrence for When is it acceptable to use jQuery?lawrence2009-04-04T04:02:57Z2009-04-04T04:02:57Z<p>Today I added a Javascript patch to a page where I had to move a div out of its original place in the DOM tree and make it a child of the body, so that it could be positioned properly. I knew it would only have to happen once, on startup, to a specific id'd div, and that the page wasn't going to use any other JS behavior. So I wrote it by hand.</p>
<p>For anything more complex, it's jQuery. The high-level API just saves me so much time that I would otherwise have to spend "talking down" to the computer.</p>
http://stackoverflow.com/questions/505180/how-to-change-the-text-color-on-uinavigationbar-button-items3How to change the text color on UINavigationBar button itemslawrence2009-02-02T22:15:36Z2009-03-26T02:53:50Z
<p>I've got a UINavigationController and i've changed it to white using the Tint property of the navigation bar in Interface Builder. But the text in buttons and the title is still the default color, white, and so gets lost against the white background. Anyone know how to work around this?</p>
http://stackoverflow.com/questions/440063/make-a-parent-function-return-super-return/440887#4408872Answer by lawrence for make a parent function return - super return?lawrence2009-01-13T21:37:48Z2009-01-13T21:37:48Z<blockquote>
<p>There's been a little confusion... I
only want to return a if a==b. if
a!=b, then I don't want gs to return
anything yet.</p>
</blockquote>
<p>Check for that then:</p>
<pre><code>def gs(a,b):
def ry():
if a==b:
return a
ret = ry()
if ret: return ret
# do other stuff
</code></pre>
http://stackoverflow.com/questions/389788/z-index-not-behaving-as-id-expect4z-index not behaving as i'd expectlawrence2008-12-23T19:11:51Z2008-12-27T06:30:44Z
<p>so i've got this, roughly:</p>
<pre><code><div id="A">
<ul>
<li id="B">foo</li>
</ul>
</div>
<div id="C">
...
</div>
</code></pre>
<p>These are positioned so that B and C overlap.</p>
<p>A has a z-index of 90, B has a z-index of 92, and C has a z-index of 91. But C shows up in front of B. What am i doing wrong? (Let me know if more detail is necessary.) </p>
http://stackoverflow.com/questions/373791/fullscreen-uiview-with-status-bar-and-navigation-bar-overlay-on-the-top/373875#373875-3Answer by lawrence for Fullscreen UIView with Status bar and Navigation Bar overlay on the toplawrence2008-12-17T07:17:49Z2008-12-17T07:17:49Z<p>Not sure what you mean by "implement"... they're components provided in prefab form by the Cocoa Touch API's. You control the behavior of the status bar with UIApplication methods such as setStatusBarHidden:animated:, and you can get a navigation bar either by manually creating a UINavigationBar, or by using a UINavigationController. </p>
http://stackoverflow.com/questions/231764/intensive-programming-reduces-communication-skills/373859#3738596Answer by lawrence for Intensive programming reduces communication skills?lawrence2008-12-17T07:07:34Z2008-12-17T07:07:34Z<p>This happens to me, to some extent, basically every workday. My girlfriend knows that when I'm in "robot mode" I'll be much less responsive to her subtle body-language cues and take longer to make spoken responses.</p>
<p>Some of it is just intense concentration, and fatigue caused by it, I'm sure; but it also makes sense to me that wrapping one's brain around languages that are shaped around the needs and limitations of machines makes one less adept, at least temporarily, at those languages shaped around the needs and limitations of people.</p>
http://stackoverflow.com/questions/373335/suggestions-for-a-cron-like-scheduler-in-python/373354#373354-1Answer by lawrence for Suggestions for a Cron like scheduler in Python?lawrence2008-12-17T01:03:57Z2008-12-17T01:03:57Z<p>Isn't it much more likely to run into a system with cron and not Python, than vice versa? I mean, cron's been around for a long time.</p>
http://stackoverflow.com/questions/329511/preserving-application-state-across-restarts4Preserving application state across restartslawrence2008-11-30T22:26:59Z2008-12-01T01:31:07Z
<p>I've been trying to preserve the state of my iPhone application by serializing my main UITabBarController using [NSKeyedArchiver archiveRootObject:toFile:], but I'm running into difficulties.</p>
<p>First I had a problem with UIImage, since it doesn't implement the NSCoding protocol, but I solved that by making an extension category for UIImage that stores and retrieves the raw image data.</p>
<p>The problem I'm stuck on now is that my view controllers aren't there when I restore from the archive. I have UINavigationControllers in each of my tabs, and when I restore, the UINavigationItems are still there -- I can use the Back buttons and so on to change them -- but the view controllers are just gone.</p>
<p>I see that UINavigationController's viewControllers property is marked "(nonatomic, copy)"; does this mean that when you archive a UINavigationController, it doesn't include its stack of view controllers? If so, how can I get around this? I first thought I would override the NSCoding methods for UINavigationController, but this screws up initialization from the NIB file.</p>
<p>I'm a little perturbed that I've been having this much difficulty preserving app state -- I figured it was a common enough use case that it would be straightforward to implement. Am I missing something here?</p>
http://stackoverflow.com/questions/313054/django-admin-interface-does-not-use-subclasss-unicode/314719#3147191Answer by lawrence for Django Admin Interface Does Not Use Subclass's __unicode__()lawrence2008-11-24T16:40:56Z2008-11-25T16:13:03Z<p>ForeignKey(Animal) is just that, a foreign key reference to a row in the Animal table. There's nothing in the underlying SQL schema that indicates that the table is being used as a superclass, so you get back an Animal object.</p>
<p>To work around this:</p>
<p>First, you want the base class to be non-abstract. This is necessary for the ForeignKey anyway, and also ensures that Dog and Cat will have disjunct primary key sets.</p>
<p>Now, Django implements inheritance using a OneToOneField. Because of this, <strong>an instance of a base class that has a subclass instance gets a reference to that instance, named appropriately.</strong> This means you can do:</p>
<pre><code>class Animal(models.Model):
def __unicode__(self):
if hasattr(self, 'dog'):
return self.dog.__unicode__()
elif hasattr(self, 'cat'):
return self.cat.__unicode__()
else:
return 'Animal'
</code></pre>
<p>This also answers your question to Ber about a <strong>unicode</strong>() that's dependent on other subclass attributes. You're actually calling the appropriate method on the subclass instance now.</p>
<p>Now, this does suggest that, since Django's already looking for subclass instances behind the scenes, the code could just go all the way and return a Cat or Dog instance instead of an Animal. You'll have to take up that question with the devs. :)</p>
http://stackoverflow.com/questions/1703674/wrestling-with-sql/1703744#1703744Comment by lawrence on Wrestling with SQLlawrence2009-11-09T21:13:02Z2009-11-09T21:13:02Zi had just finished writing up my own version of this from your original posting, but i deleted it since you should get the credithttp://stackoverflow.com/questions/1703674/wrestling-with-sql/1703711#1703711Comment by lawrence on Wrestling with SQLlawrence2009-11-09T20:58:19Z2009-11-09T20:58:19Zbecause if i do "select distinct IF(sender_id=4, recipient_id, sender_id) AS partner_id, created" then i get duplicate partner_idshttp://stackoverflow.com/questions/1703674/wrestling-with-sqlComment by lawrence on Wrestling with SQLlawrence2009-11-09T20:56:25Z2009-11-09T20:56:25Z M is the other user's ID. All I want in the end is a list of M's and their associated most-recent create times.http://stackoverflow.com/questions/1703674/wrestling-with-sql/1703711#1703711Comment by lawrence on Wrestling with SQLlawrence2009-11-09T20:55:07Z2009-11-09T20:55:07Zah, this is close. unfortunately i was unclear and i also need the timestamp itself, which breaks distinct, i think?http://stackoverflow.com/questions/1703674/wrestling-with-sql/1703702#1703702Comment by lawrence on Wrestling with SQLlawrence2009-11-09T20:49:39Z2009-11-09T20:49:39Zif the create time is equal then it doesn't matterhttp://stackoverflow.com/questions/1302229/overlapping-the-tab-bar-in-a-subviewComment by lawrence on Overlapping the tab bar in a subviewlawrence2009-10-22T19:58:26Z2009-10-22T19:58:26ZHmm, first time I've asked a question and gotten no responses. Why?http://stackoverflow.com/questions/1231068/method-delegation-in-javascript-jquery/1231240#1231240Comment by lawrence on Method delegation in Javascript/jQuery?lawrence2009-08-05T05:07:08Z2009-08-05T05:07:08ZBeautiful, thank you. I knew there must have been some really basic way to do what I wanted with inheritance.http://stackoverflow.com/questions/1231068/method-delegation-in-javascript-jquery/1231190#1231190Comment by lawrence on Method delegation in Javascript/jQuery?lawrence2009-08-05T04:35:43Z2009-08-05T04:35:43ZThat is a valid alternate way of approaching the problem, but it doesn't allow me to keep any object state. I suppose I could use jQuery.data() for that, but that smells bad...http://stackoverflow.com/questions/1231068/method-delegation-in-javascript-jquery/1231077#1231077Comment by lawrence on Method delegation in Javascript/jQuery?lawrence2009-08-05T04:15:23Z2009-08-05T04:15:23ZEDIT: I realize now that I actually used the wrong syntax in my snippet. Will fix.http://stackoverflow.com/questions/1231068/method-delegation-in-javascript-jquery/1231077#1231077Comment by lawrence on Method delegation in Javascript/jQuery?lawrence2009-08-05T04:14:42Z2009-08-05T04:14:42ZHmm. Thanks for attempting to help, but, um, two things:
1) My question wasn't about whether my Javascript snippet is valid or not. I know it is. My question was about what's written in the comment: is there a way to automatically delegate method calls?
2) Your snippet doesn't work. As you've written it,
myWidget = a function that returns a function.
myWidget() = a function that returns nothing.http://stackoverflow.com/questions/1208299/presenting-a-modal-view-controller-only-after-another-one-has-been-dismissed/1208920#1208920Comment by lawrence on Presenting a modal view controller only after another one has been dismissedlawrence2009-07-30T23:14:29Z2009-07-30T23:14:29Zhey, thanks for the suggestion! this seems to work. the one caveat is that i had to use performSelectorOnMainThread:withObject:waitUntilDone: even though it's already in the main thread, just so that all the internal notifications triggered by the dismissal get cleared out before the new presentModalViewController:animated: call starts mucking around again. Otherwise I get an EXC_BAD_ACCESS. http://stackoverflow.com/questions/1180030/is-this-plan-for-preventing-iphone-app-client-spoofing-sound/1180117#1180117Comment by lawrence on Is this plan for preventing iPhone app client spoofing sound?lawrence2009-07-25T23:36:20Z2009-07-25T23:36:20ZThanks for the answer and especially for the link to the related question.http://stackoverflow.com/questions/913171/layout-screws-up-when-i-push-several-controllers-without-animation/913883#913883Comment by lawrence on Layout screws up when I push several controllers without animationlawrence2009-05-28T15:10:44Z2009-05-28T15:10:44ZI'm not having any trouble getting the controllers to show up; they're just being laid out wrong. See my edited question.http://stackoverflow.com/questions/753139/how-would-i-draw-a-line-at-the-bottom-of-a-uinavigationbar/756225#756225Comment by lawrence on How would I draw a line at the bottom of a UINavigationBar?lawrence2009-05-26T17:49:43Z2009-05-26T17:49:43ZIt turns out that it does interfere with buttons. I ended up overriding [UINavigationBar drawRect] and placing the image there with [UIImage drawInRect:].http://stackoverflow.com/questions/203589/iphone-sdk-assertion-failure-in-uilabel-setfontComment by lawrence on iPhone SDK: Assertion failure in -[UILabel setFont:]lawrence2009-05-21T08:56:29Z2009-05-21T08:56:29ZAnd it only happens with UIButton, not UILabel.