User Will Harris - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T22:05:33Zhttp://stackoverflow.com/feeds/user/4702http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1829492/property-refuses-to-synthesize/1829547#18295472Answer by Will Harris for Property Refuses to SynthesizeWill Harris2009-12-01T22:58:29Z2009-12-02T11:57:16Z<p><code>@synthesize</code> generates a simple method to access the property. Since your accessor method is more complex, it can't be generated with <code>@synthesize</code>.</p>
<pre><code>- (NSArray *)recipes {
return [data allKeys];
}
</code></pre>
http://stackoverflow.com/questions/1819130/import-and-work-with-an-sql-database-in-xcode/1819679#18196791Answer by Will Harris for Import and work with an SQL database in XcodeWill Harris2009-11-30T12:56:35Z2009-11-30T12:56:35Z<p>I'm assuming here that you're using sqlite3. If so, it looks like the database file is not present on the iPhone at the path you're using to open it.</p>
<p>Check that the database file is being copied to the bundle by looking inside the .app bundle. To put the file in the bundle, add it to the Copy Bundle Resources build phase in Xcode.</p>
<p>Check that the database file is not corrupt. Use <code>sqlite3 [path to the file inside the bundle]</code> to test your queries from the command line.</p>
<p>Check that you are using the correct path to open the database. Put a breakpoint on the line where you call <code>sqlite3_open</code> and check that the file really is at that path.</p>
http://stackoverflow.com/questions/943992/how-to-write-lambda-methods-in-objective-c/944259#9442598Answer by Will Harris for How to write lambda methods in Objective-C ?Will Harris2009-06-03T11:42:11Z2009-11-30T12:23:36Z<p>OS X 10.6 introduced blocks. See <a href="http://stackoverflow.com/questions/943992/how-to-write-lambda-methods-in-objective-c/1810458#1810458">AlBlue's answer for examples</a>.</p>
<p>If you're not using Snow Leopard, you can get something close to function composition using various other features.</p>
<p>Example using C function pointers:</p>
<pre><code>void sayHello() {
NSLog(@"Hello!");
}
void doSomethingTwice(void (*something)(void)) {
something();
something();
}
int main(void) {
doSomethingTwice(sayHello);
return 0;
}
</code></pre>
<p>Example using the command pattern:</p>
<pre><code>@protocol Command <NSObject>
- (void) doSomething;
@end
@interface SayHello : NSObject <Command> {
}
@end
@implementation SayHello
- (void) doSomething {
NSLog(@"Hello!");
}
@end
void doSomethingTwice(id<Command> command) {
[command doSomething];
[command doSomething];
}
int main(void) {
SayHello* sayHello = [[SayHello alloc] init];
doSomethingTwice(sayHello);
[sayHello release];
return 0;
}
</code></pre>
<p>Example using a selector:</p>
<pre><code>@interface SaySomething : NSObject {
}
- (void) sayHello;
@end
@implementation SaySomething
- (void) sayHello {
NSLog(@"Hello!");
}
@end
void doSomethingTwice(id<NSObject> obj, SEL selector) {
[obj performSelector:selector];
[obj performSelector:selector];
}
int main(void) {
SaySomething* saySomething = [[SaySomething alloc] init];
doSomethingTwice(saySomething, @selector(sayHello));
[saySomething release];
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1726569/iphone-mvc-need-some-help-with-understanding-how-to-correctly-pass-data-from-con/1726650#17266501Answer by Will Harris for iPhone MVC. Need some help with understanding how to correctly pass data from Controller to View.Will Harris2009-11-13T01:56:19Z2009-11-13T01:56:19Z<p>One way to avoid the cast would be to add a separate outlet property for the custom view on the controller, and refer to that instead.</p>
<p>In Interface Builder, make an instance of <code>MyCustomView</code> and drag it into the existing view to make it a subview, then attach it to its own outlet on the controller.</p>
http://stackoverflow.com/questions/1726514/customising-the-colour-scheme-of-the-core-location-confirmation-alert/1726628#17266280Answer by Will Harris for Customising the colour scheme of the Core Location confirmation alertWill Harris2009-11-13T01:45:51Z2009-11-13T01:45:51Z<p>It is not possible to customise the alert through the published APIs. There may be an undocumented API call to customise the alert (I haven't checked), or another sneaky way to do it (perhaps a category on <code>UIAlertView</code> to override <code>drawRect:</code>).</p>
<p>Beware, the App Store rejection team test that particular alert thoroughly, so an app that messes with it is likely to get caught.</p>
http://stackoverflow.com/questions/1599406/mkmapview-get-clicked-event-on-annotation-pin/1603624#16036240Answer by Will Harris for MKMapView: Get clicked event on annotation pinWill Harris2009-10-21T21:04:39Z2009-10-21T21:04:39Z<p>I haven't seen a simple way to do this in MapKit. There's no <code>mapView:annotationWasTapped:</code> on the delegate.</p>
<p>One way to do it would be to provide your own annotation view subclass. The custom annotation view could capture the pin selection in <code>setSelected:animated:</code> or in a lower level event handler and pass that information up to your view controller.</p>
http://stackoverflow.com/questions/1599998/can-i-display-a-driving-track-between-two-points-using-the-map-kit/1603546#16035460Answer by Will Harris for Can I display a driving track between two points using the map kit ?Will Harris2009-10-21T20:52:42Z2009-10-21T20:52:42Z<p>MapKit does not give directions. I think this is because of the licence agreement between Google and their map data providers.</p>
<p>The easiest way to show directions is indeed to open the map URL. You understand correctly, this will close your app and open the Maps application. Closing your app to show Maps may be the right thing to do from your users' points of view.</p>
<p>If you must have directions on your map without leaving your application, you'll have to build it yourself. You could render the route as one or more <code>UIAnnotation</code>s with custom views. Unfortunately, your app will have to find the route information on its own (or use a third party library).</p>
http://stackoverflow.com/questions/1598648/iphone-development-unit-testing-linking-problem/1603446#16034461Answer by Will Harris for iPhone development Unit Testing Linking Problem Will Harris2009-10-21T20:34:15Z2009-10-21T20:34:15Z<p>The missing symbol is <code>.objc_class_name_Child</code>. I'm guessing you have a class called <code>Child</code> but its implementation file is not being built as part of your test target.</p>
<p>To fix the problem find the file (probably called <code>Child.m</code>) and make sure your test target is checked in the Targets tab of the file's File->Info.</p>
http://stackoverflow.com/questions/1600198/does-iphone-os-distinguish-between-foreground-and-background-threads/1600232#16002324Answer by Will Harris for Does iPhone OS distinguish between foreground and background threads?Will Harris2009-10-21T11:26:53Z2009-10-21T11:35:00Z<p>There is the notion of the main thread, where all UIKit and Core Graphics calls have to come from. I suppose you could say the main thread is a foreground thread and all other threads in your app are background threads.</p>
<p>You can start a background thread with <code>performSelectorInBackground:withObject:</code> on <code>NSObject</code>. If you need to do some work on the main thread (eg. do some UI stuff), you can use <code>performSelectorOnMainThread:withObject:waitUntilDone:</code>. If you need to check if your code is currently running on the main thread, you can use <code>[NSThread isMainThread]</code>.</p>
http://stackoverflow.com/questions/1586858/find-the-smallest-integer-not-in-a-list/1587150#15871500Answer by Will Harris for Find the Smallest Integer Not in a ListWill Harris2009-10-19T05:55:38Z2009-10-19T05:55:38Z<p>You can do it in O(n) time and O(1) additional space, although the hidden factor is quite large. This isn't a practical way to solve the problem, but it might be interesting nonetheless.</p>
<p>For every unsigned 64-bit integer (in ascending order) iterate over the list until you find the target integer or you reach the end of the list. If you reach the end of the list, the target integer is the smallest integer not in the list. If you reach the end of the 64-bit integers, every 64-bit integer is in the list.</p>
<p>Here it is as a Python function:</p>
<pre><code>def smallest_missing_uint64(source_list):
the_answer = None
target = 0L
while target < 2L**64:
target_found = False
for item in source_list:
if item == target:
target_found = True
if not target_found and the_answer is None:
the_answer = target
target += 1L
return the_answer
</code></pre>
<p>This function is deliberately inefficient to keep it O(n). Note especially that the function keeps checking target integers even after the answer has been found. If the function returned as soon as the answer was found, the number of times the outer loop ran would be bound by the size of the answer, which is bound by n. That change would make the run time O(n^2), even though it would be a lot faster.</p>
http://stackoverflow.com/questions/1586585/what-is-the-couchdb-equivalent-of-the-sql-count-aggregate-function/1586657#15866575Answer by Will Harris for What is the CouchDB equivalent of the SQL COUNT(*) aggregate function?Will Harris2009-10-19T01:56:11Z2009-10-19T01:56:11Z<p>It looks like your reduce results are being re-reduced. That is, <code>reduce</code> is called more than once for each key and then called again with those results. You can handle that with a <code>reduce</code> function like this:</p>
<pre><code>function(keys, values, rereduce) {
if (rereduce) {
return sum(values);
} else {
return values.length;
}
}
</code></pre>
<p>Alternatively, you can change the <code>map</code> function so that the values are always a count of documents:</p>
<pre><code>// map
function(doc) {
emit(doc.name, 1);
}
// reduce
function(keys, values, rereduce) {
return sum(values);
}
</code></pre>
http://stackoverflow.com/questions/1572059/how-to-open-iphone-projects-m-files-on-windows-operating-system/1572266#15722664Answer by Will Harris for How to open iphone project's .m files on windows operating systemWill Harris2009-10-15T13:09:57Z2009-10-15T13:09:57Z<p>.h and .m files are just plain text. You should be able to open them with Wordpad.</p>
<p>If you want syntax highlighting, try <a href="http://notepad-plus.sourceforge.net/uk/site.htm" rel="nofollow">Notepad++</a>.</p>
http://stackoverflow.com/questions/56011/single-quotes-vs-double-quotes-in-python/56190#5619030Answer by Will Harris for Single quotes vs. double quotes in PythonWill Harris2008-09-11T10:06:49Z2009-10-13T13:40:33Z<p>I like to use double quotes around strings that are used for interpolation or that are natural language messages, and single quotes for small symbol-like strings, but will break the rules if the strings contain quotes, or if I forget. I use triple double quotes for docstrings and raw string literals for regular expressions even if they aren't needed.</p>
<p>For example:</p>
<pre><code>light_messages = {
'English': "There are %(number_of_lights)s lights.",
'Pirate': "Arr! There be %(number_of_lights)s lights."
}
def lightsMessage(language, number_of_lights):
"""Return a language-appropriate string reporting the light count."""
return light_messages[language] % locals()
def isPirate(message):
"""Return True if the given message sounds piratical."""
return re.search(r"(?i)(arr|avast|yohoho)!", message) is not None
</code></pre>
http://stackoverflow.com/questions/1537018/iphone-sdk-on-powerpc/1537472#15374721Answer by Will Harris for iPhone SDK on PowerPC?Will Harris2009-10-08T12:21:23Z2009-10-08T12:21:23Z<p>The iPhone SDK only works on Macs with Intel processors. If you want to save money, you might be able to get the iPhone SDK working on a Hackintosh, but building a Hackintosh may be illegal and applying software updates will be annoying.</p>
<p>I suggest looking for a cheap second-hand Intel-based Mac Mini.</p>
http://stackoverflow.com/questions/1516423/uiview-how-do-i-redisplay-a-data-driven-uiview/1516665#15166652Answer by Will Harris for UIView. How do I redisplay a "data driven" UIView?Will Harris2009-10-04T15:28:38Z2009-10-04T15:28:38Z<p><code>[myView setNeedsDisplay]</code> should cause <code>drawRect:</code> to be sent to <code>myView</code> the next time you're back in the run loop and <code>myView</code> is visible. If changing the bounds is causing the view to redraw (<code>myView.contentMode</code> is <code>UIViewContentModeRedraw</code>), then <code>setNeedsDisplay</code> must be working, since that's how the redraw is signalled by the bounds change. See the <a href="http://developer.apple.com/iPhone/library/documentation/UIKit/Reference/UIView%5FClass/UIView/UIView.html#//apple%5Fref/occ/instm/UIView/setNeedsDisplay" rel="nofollow">UIView class reference</a> for details.</p>
<p>Is your <code>drawRect:</code> being invoked the first time the view is shown? If not, it may be misspelled, overridden in a subclass, or even on the wrong object.</p>
<p>Is the view visible and on screen? It won't be drawn if it is off screen.</p>
<p>Is control returning to the event loop? <code>drawRect:</code> won't be invoked if your application is busy.</p>
http://stackoverflow.com/questions/1372643/removing-mkmapview-annotations-causes-leaks/1493569#14935691Answer by Will Harris for Removing MKMapView Annotations causes leaks.Will Harris2009-09-29T16:16:07Z2009-09-29T16:16:07Z<p>You're not releasing <code>mymark</code> in <code>storeLocationInfo:title:subtitle:index:</code>. It looks like the problem is a typing error. The line that reads</p>
<pre><code>[MyMark release];
</code></pre>
<p>should be</p>
<pre><code>[mymark release];
</code></pre>
<p>Note the case difference. The first line sends <code>release</code> to the class, not the instance.</p>
http://stackoverflow.com/questions/1420868/do-i-need-to-sign-my-app-before-submitting-to-app-store/1422033#14220331Answer by Will Harris for do i need to sign my app before submitting to app store?Will Harris2009-09-14T14:48:08Z2009-09-14T14:48:08Z<blockquote>
<p>do i need to sign my app with my distribution provisioning profile before submitting to app store?</p>
</blockquote>
<p>Yes. You need to build the app with an iPhone Distribution Provisioning Profile associated with your distribution certificate. If you haven't already, you'll need to create a new Distribution Provisioning Profile that has its Distribution Method set to App Store.</p>
<blockquote>
<p>do i need to add entitlement as we do in ad hoc or simply build with app store distribution provision profile?</p>
</blockquote>
<p>Yes. Just like with Ad Hoc distribution, you need an entitilements.plist with the <code>get-task-allow</code> unchecked.</p>
<p>If you already have a configuration in Xcode for your Ad Hoc build, creating an App Store build configuration should be just a case of duplicating the As Hoc configuration and changing the code signing settings to use the App Store provisioning profile.</p>
http://stackoverflow.com/questions/1421509/code-sign-error-while-installing-application-on-iphone/1421940#14219400Answer by Will Harris for code sign error while installing application on iPhoneWill Harris2009-09-14T14:32:52Z2009-09-14T14:32:52Z<p>The bundle identifier in your info.plist should match the App ID of the provisioning profile. If your provisioning profile has an App ID of "CXXXXXXXXX.abc-xyz.com" then it will only sign apps with a bundle identifier of "abc-xyz.com", not "com.abc-xyz.ApplicationName".</p>
<p>You need to make the provisioning profile's App ID and the bundle identifier match. One way to do this is to set the App ID in the provisioning profile to "CXXXXXXXXX.com.abc-xyz.ApplicationName". </p>
<p>You can make the provisioning profile work for any app for your company by using a wildcard. "CXXXXXXXXX.com.abc-xyz.*" will match any bundle identifier that starts with "com.abc-xyz.".</p>
<p>For simplicity, I tend to wildcard the whole string ("CXXXXXXXXX.*") for Ad Hoc and Development profiles.</p>
http://stackoverflow.com/questions/1418077/find-all-rows-ordered-by-method-in-activerecord0Find all rows ordered by method in ActiveRecordWill Harris2009-09-13T16:06:25Z2009-09-13T19:19:05Z
<p>I have an ActiveRecord model with a field called <code>name</code> (in the database) and a method called <code>collation_name</code> (not in the database) that returns a reduced version of the name. The model class resembles this:</p>
<pre><code>class Foo < ActiveRecord::Base
# ... other stuff ...
def collation_name
words = name.downcase.split
if words[0] == 'the'
words.shift
end
words.join(' ')
end
end
</code></pre>
<p>My application is used to export the application database to a second database containing a denormalized version of the data, including <code>collation_name</code> as a real column. I'd like to use <code>collation_name</code> to order records for display within the application's views. I tried <code>Foo.all(:order=>:collation_name)</code> but got a 'no such column: collation_name' error.</p>
<p>How do I get a list of <code>Foo</code> records ordered by <code>collation_name</code>? Do I have to add <code>collation_name</code> as a real column in the application database for ActiveRecord to see it when ordering? Should I sort in my application code after ActiveRecord has returned results?</p>
http://stackoverflow.com/questions/1386703/drawing-a-line-in-a-custom-uitableviewcell/1386733#13867335Answer by Will Harris for Drawing a line in a custom UITableViewCellWill Harris2009-09-06T21:11:25Z2009-09-06T21:11:25Z<p>I've been caught out by the same thing in the past. What you have written just sets up the line to be drawn. You need to call something like this to actually draw the line:</p>
<pre><code> CGContextStrokePath(context);
</code></pre>
http://stackoverflow.com/questions/1365112/what-dpi-resolution-is-used-for-an-iphone-app/1365332#13653320Answer by Will Harris for What dpi resolution is used for an iPhone App ?Will Harris2009-09-02T00:33:36Z2009-09-02T00:33:36Z<p>The iPhone screen has 163 DPI, but I've found that images at that resolution appear too small in Xcode and Interface Builder. I recommend pretending that the screen has 72 DPI when making bitmap images for the iPhone, but remember that the screen has 163 DPI if you're drawing a ruler.</p>
http://stackoverflow.com/questions/1327724/understanding-methods-in-objective-c/1327778#1327778-1Answer by Will Harris for understanding methods in objective-cWill Harris2009-08-25T11:49:28Z2009-08-28T14:19:28Z<p><code>numberOfSectionsInTableView:</code> is being called by the table view.</p>
<p>You implement <code>numberOfSectionsInTableView:</code> as part of the <code>UITableViewDataSource</code> protocol. Each <code>UITableView</code> is given a <code>dataSource</code>. Normally, <code>UITableView</code> will be constructed by a <code>UITableViewController</code> which will set itself as the view's <code>dataSource</code>.</p>
<p>When the view is shown, it calls <code>numberOfSectionsInTableView:</code> on its <code>dataSource</code>.</p>
<p>This is explained in the <a href="http://developer.apple.com/iphone/library/documentation/UserExperience/Conceptual/TableView%5FiPhone/Introduction/Introduction.html" rel="nofollow">Table View Programming Guide for iPhone OS</a>.</p>
http://stackoverflow.com/questions/1325659/iphone-memory-management-question/1328376#13283762Answer by Will Harris for iPhone memory management Question Will Harris2009-08-25T13:45:55Z2009-08-25T13:45:55Z<p>Number 1 is probably correct.</p>
<pre><code>ClassOne *ob = [[ClassOne alloc] init]; // do i should use autorelease here ?
</code></pre>
<p>When you call <code>[ClassOne alloc]</code> you get an object with a retain count of 1 and you are responsible for the release.</p>
<pre><code>self.O = ob;
</code></pre>
<p>Assuming <code>self.O</code> is a <code>retain</code> property and not an <code>assign</code> property, <code>self.O</code>/<code>ob</code> will have a retain count of 2.</p>
<pre><code>[ob release];
</code></pre>
<p>Now <code>self.O</code>/<code>ob</code> will have a retain count of 1. This <code>release</code> matches up with the <code>alloc</code>. The remaining retain count is owned by <code>self</code> so you'll have to remember to release <code>O</code> when <code>self</code> is finished with it.</p>
<pre><code>-(void)dealloc{
[O release]; // is this correct ??
}
</code></pre>
<p>Good. You remembered to release <code>O</code>. Now <code>O</code> will be fully released when <code>self</code> is dealloced. (Note: you should call <code>[super dealloc]</code> at the end of <code>dealloc</code>.)</p>
<pre><code>- (void) runIt {
ClassOne *ob = [[ClassOne alloc] init];
[classTwoOb takeParam:ob];
}
</code></pre>
<p>You should release <code>ob</code> after calling <code>takeParam:</code>. Methods are responsible for retaining objects they want to keep. If <code>takeParam:</code> stores <code>ob</code> on <code>classTwoOb</code>, it should be retained before the method returns. If not, it shouldn't.</p>
<p>Use <code>autorelease</code> in methods that return objects that they have created. This gives the caller a chance to retain the object if it wants it, or not if doesn't need it for long. The exception to this is methods used to create objects, which should always be called <code>alloc</code><em>, <code>new</code></em>, or <code>*copy*</code>, and should return the object with a reference count of 1, making the caller responsible for the release.</p>
<p>To really learn Objective-C memory management, I recommend reading the Memory Management Programming Guide, especially the section on <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/Articles/mmRules.html#//apple%5Fref/doc/uid/20000994-BAJHFBGH" rel="nofollow">Memory Management Rules</a>.</p>
http://stackoverflow.com/questions/1327902/gps-or-triangulation-when-setting-user-position-on-map/1328134#13281340Answer by Will Harris for GPS or triangulation when setting user position on map????Will Harris2009-08-25T12:59:44Z2009-08-25T12:59:44Z<p>Perhaps you can use CoreLocation directly. <code>CLLocationManager</code> gives you <code>CLLocation</code> objects than include their accuracy. If you get an accuracy below 50 meters, it the location probably came from GPS.</p>
http://stackoverflow.com/questions/1327583/how-would-you-parse-the-integer-out-of-this-xml-response-in-obj-c/1327725#13277254Answer by Will Harris for How would you parse the integer out of this XML response in Obj C?Will Harris2009-08-25T11:39:40Z2009-08-25T11:39:40Z<p>I would use an XML parser. Using an XML parser really is the best way to parse XML.</p>
<p>It's not that hard to do either:</p>
<pre><code>// Parser Delegate
@interface ParserDelegate : NSObject {
int inTripElements;
NSMutableString* trip;
}
@property (readonly) NSMutableString* trip;
@end
@implementation ParserDelegate
@synthesize trip;
- (id) init {
if (![super init]) {
[self release];
return nil;
}
trip = [@"" mutableCopy];
return self;
}
- (void) parser:(NSXMLParser *)parser
didStartElement:(NSString *)elementName
namespaceURI:(NSString *)namespaceURI
qualifiedName:(NSString *)qualifiedName
attributes:(NSDictionary *)attributeDict {
if ([elementName isEqualToString:@"trip"]) {
++inTripElements;
}
}
- (void) parser:(NSXMLParser *)parser foundCharacters:(NSString *)string {
if (inTripElements > 0) {
[trip appendString:string];
}
}
- (void) parser:(NSXMLParser *)parser
didEndElement:(NSString *)elementName
namespaceURI:(NSString *)namespaceURI
qualifiedName:(NSString *)qName {
if ([elementName isEqualToString:@"trip"]) {
--inTripElements;
}
}
@end
// Parsing
NSString* toParse = @"<?xml version=\"1.0\"?>"
"<trip>328925</trip>";
NSData* data = [NSData dataWithBytes:[toParse UTF8String]
length:strlen([toParse UTF8String])];
ParserDelegate* parserDelegate = [[ParserDelegate alloc] init];
NSXMLParser* parser = [[NSXMLParser alloc] initWithData:data];
[parser setDelegate:parserDelegate];
[parser parse];
[parser release];
NSLog(@"trip=%@", parserDelegate.trip);
[parserDelegate release];
</code></pre>
http://stackoverflow.com/questions/1011431/python-things-one-must-avoid/1321271#13212718Answer by Will Harris for Python - Things one MUST avoidWill Harris2009-08-24T09:11:42Z2009-08-24T21:09:43Z<p>Rolling your own code before looking in the standard library. For example, writing this:</p>
<pre><code>def repeat_list(items):
while True:
for item in items:
yield item
</code></pre>
<p>When you could just use this:</p>
<pre><code>from itertools import cycle
</code></pre>
<p>Examples of frequently overlooked modules (besides <a href="http://docs.python.org/library/itertools.html" rel="nofollow"><code>itertools</code></a>) include:</p>
<ul>
<li><a href="http://docs.python.org/library/optparse.html" rel="nofollow"><code>optparse</code></a> for creating command line parsers</li>
<li><a href="http://docs.python.org/library/configparser.html" rel="nofollow"><code>ConfigParser</code></a> for reading configuration files in a standard manner</li>
<li><a href="http://docs.python.org/library/tempfile.html" rel="nofollow"><code>tempfile</code></a> for creating and managing temporary files</li>
<li><a href="http://docs.python.org/library/shelve.html" rel="nofollow"><code>shelve</code></a> for storing Python objects to disk, handy when a full fledged database is overkill</li>
</ul>
http://stackoverflow.com/questions/1322420/finding-a-string-in-a-string/1322612#13226122Answer by Will Harris for Finding a string in a stringWill Harris2009-08-24T14:01:08Z2009-08-24T14:01:08Z<p>Ideally, I'd use a regular expression for this, probably something like <code>co_2(.*?)end</code>, so I'd take a look at RegexKitLite as <a href="http://stackoverflow.com/questions/1322420/finding-a-string-in-a-string/1322461#1322461">stimms suggests</a>.</p>
<p>If that is not suitable, you could extract the string you're looking for with something like this:</p>
<pre><code>NSString* src = @"xxxxxco_2zendxxxxxxx";
NSRange startMarker = [src rangeOfString:@"co_2"];
if (startMarker.location != NSNotFound) {
NSScanner* scanner = [NSScanner scannerWithString:src];
[scanner setScanLocation:startMarker.location + startMarker.length];
NSString* co2Value = @"";
[scanner scanUpToString:@"end" intoString:&co2Value];
NSLog(@"co_2 value is %@", co2Value);
} else {
NSLog(@"co_2 marker not found");
}
</code></pre>
<p>Here we look for <code>@"co_2"</code>, failing if it's not found, then use an <code>NSScanner</code> to grab everything from just after that string to the next occurrence of <code>@"end"</code>. Note that if <code>@"end"</code> is missing this code will silently grab the rest of the string.</p>
http://stackoverflow.com/questions/1011431/python-things-one-must-avoid/1321061#132106116Answer by Will Harris for Python - Things one MUST avoidWill Harris2009-08-24T08:12:17Z2009-08-24T08:36:31Z<p>Mutating a default argument:</p>
<pre><code>def foo(bar=[]):
bar.append('baz')
return bar
</code></pre>
<p>The default value is evaluated only once, and not every time the function is called. Repeated calls to <code>foo()</code> would return <code>['baz']</code>, <code>['baz', 'baz']</code>, <code>['baz', 'baz', 'baz']</code>, ...</p>
<p>If you want to mutate bar do something like this:</p>
<pre><code>def foo(bar=None):
if bar is None:
bar = []
bar.append('baz')
return bar
</code></pre>
<p>Or, if you like arguments to be final:</p>
<pre><code>def foo(bar=[]):
not_bar = bar[:]
not_bar.append('baz')
return not_bar
</code></pre>
http://stackoverflow.com/questions/1319107/what-are-the-benefits-limitations-of-macruby-and-has-anyone-used-it-to-program-fo/1319366#13193665Answer by Will Harris for What are the benefits/limitations of MacRuby and has anyone used it to program for iPhone?Will Harris2009-08-23T19:37:30Z2009-08-23T19:37:30Z<p>I've not used MacRuby, but I doubt if it could be used for iPhone development because it is built on top of the Mac OS X Objective-C runtime and uses the Objective-C 2.0 garbage collector (instead of using its own). Although iPhone OS has Objective-C 2.0, it lacks the garbage collector (you still have to use <code>retain</code>/<code>release</code>-style managed memory), so I expect MacRuby would not work out of the box.</p>
<p>Also, MacRuby would not be useful for developing for the App Store since using interpreters (other than those supplied by Apple) is verboten.</p>
<p>An iPhone port of Ruby might work on a jailbroken phone, but the device has very limited RAM and CPU resources, so I'm not sure how successful such a port would be. I expect MRI is too slow and memory hungry to be useful on the iPhone, but one of the alternative Ruby interpreters might work well - a MacRuby with its own GC perhaps.</p>
<p>I can certainly see MacRuby having many advantages for Mac OS X development. Here are some things off the top of my head:</p>
<ol>
<li>As a language, Ruby it is a joy to use. Blocks are lovely. It's very dynamic and has great support for meta-programming, making it possible to quickly produce very compact but still readable code.</li>
<li>Objective-C can be quite high-level when it's being Objective, but can get annoyingly low-level when it's being C. Ruby has less of the C-ness.</li>
<li>IMHO, Objective-C has some really weird syntax. You get used to it after a while, but it scares newbies. Ruby has a much more mainstream syntax, especially if you use <code>foo.bar('baz')</code> instead of <code>foo.bar 'baz'</code>.</li>
<li>Objective-C uses header files. I get annoyed cutting'n'pasting method prototypes between <code>.h</code> and <code>.m</code> files. Ruby has none of that.</li>
</ol>
http://stackoverflow.com/questions/1317178/parsing-latitude-and-longitude-with-ruby/1317231#13172312Answer by Will Harris for Parsing latitude and longitude with RubyWill Harris2009-08-22T22:38:41Z2009-08-23T18:40:24Z<p>How about using a regular expression? Eg:</p>
<pre><code>def latlong(dms_pair)
match = dms_pair.match(/(\d\d)º (\d\d)' (\d\d)'' (\d\d)º (\d\d)' (\d\d)''/)
latitude = match[1].to_f + match[2].to_f / 60 + match[3].to_f / 3600
longitude = match[4].to_f + match[5].to_f / 60 + match[6].to_f / 3600
{:latitude=>latitude, :longitude=>longitude}
end
</code></pre>
<p>Here's a more complex version that copes with negative coordinates:</p>
<pre><code>def dms_to_degrees(d, m, s)
degrees = d
fractional = m / 60 + s / 3600
if d > 0
degrees + fractional
else
degrees - fractional
end
end
def latlong(dms_pair)
match = dms_pair.match(/(-?\d+)º (\d+)' (\d+)'' (-?\d+)º (\d+)' (\d+)''/)
latitude = dms_to_degrees(*match[1..3].map {|x| x.to_f})
longitude = dms_to_degrees(*match[4..6].map {|x| x.to_f})
{:latitude=>latitude, :longitude=>longitude}
end
</code></pre>
http://stackoverflow.com/questions/1829492/property-refuses-to-synthesize/1829547#1829547Comment by Will Harris on Property Refuses to SynthesizeWill Harris2009-12-02T11:58:23Z2009-12-02T11:58:23ZThanks, bbum. I've been using @dynamic all this time even when it wasn't needed.http://stackoverflow.com/questions/1586858/find-the-smallest-integer-not-in-a-list/1587119#1587119Comment by Will Harris on Find the Smallest Integer Not in a ListWill Harris2009-10-19T12:52:19Z2009-10-19T12:52:19ZAnts, I agree that it's O(n*N), but N is not constant. Because the algorithm finishes when it finds the answer, the number of complete iterations through the outer loop is equal to the answer, which itself is bound by the size of the list. So, O(N*n) is O(n^2) in this case.http://stackoverflow.com/questions/1586858/find-the-smallest-integer-not-in-a-list/1587119#1587119Comment by Will Harris on Find the Smallest Integer Not in a ListWill Harris2009-10-19T06:07:43Z2009-10-19T06:07:43ZBreaking out the the loop early makes the runtime O(n^2).http://stackoverflow.com/questions/1418077/find-all-rows-ordered-by-method-in-activerecord/1418154#1418154Comment by Will Harris on Find all rows ordered by method in ActiveRecordWill Harris2009-09-13T18:26:50Z2009-09-13T18:26:50ZMy question is about whether I can do the sort with the ActiveRecord library. I've edited the question to make that (hopefully) more clear.http://stackoverflow.com/questions/1418077/find-all-rows-ordered-by-method-in-activerecord/1418132#1418132Comment by Will Harris on Find all rows ordered by method in ActiveRecordWill Harris2009-09-13T18:13:54Z2009-09-13T18:13:54ZThe database table matching the model class has id (an integer), name (a string), and some other fields.http://stackoverflow.com/questions/1327724/understanding-methods-in-objective-c/1327778#1327778Comment by Will Harris on understanding methods in objective-cWill Harris2009-08-28T14:27:12Z2009-08-28T14:27:12ZThe Cocoa Fundamentals Guide says (<a href="http://tinyurl.com/howdelegationworks" rel="nofollow">tinyurl.com/howdelegationworks</a>) 'If the delegating class declares a formal protocol, the delegate may choose to implement those methods marked optional, but it must implement the required ones.' I take that to mean that delegate protocols can have required methods. The same doc also says 'A data source is like a delegate except that, instead of being delegated control of the user interface, it is delegated control of data.' You're right that dataSource is not a delegate and I've edited the answer to reflect this.http://stackoverflow.com/questions/1327724/understanding-methods-in-objective-c/1327778#1327778Comment by Will Harris on understanding methods in objective-cWill Harris2009-08-26T09:51:16Z2009-08-26T09:51:16Z@bbum, I don't think delegate protocols are required to have only optional methods. See SKProductsRequestDelegate and ABNewPersonViewControllerDelegate for examples having required methods.http://stackoverflow.com/questions/1327902/gps-or-triangulation-when-setting-user-position-on-map/1328134#1328134Comment by Will Harris on GPS or triangulation when setting user position on map????Will Harris2009-08-25T13:48:22Z2009-08-25T13:48:22ZYou won't necessarily get locations of the desired accuracy. I'm suggesting that you check the horizontalAccuracy you do get and warn the user if it is too large.http://stackoverflow.com/questions/1211061/uitableviewcell-problem/1212737#1212737Comment by Will Harris on UITableviewcell problemWill Harris2009-08-24T08:27:10Z2009-08-24T08:27:10ZIt is possible to have a single custom object be both delegates by having your custom class implement both delegate protocols.http://stackoverflow.com/questions/1305414/nstimer-problem/1305435#1305435Comment by Will Harris on NSTimer problemWill Harris2009-08-24T07:55:52Z2009-08-24T07:55:52Z@teabot, Sachin's mistake is understandable. You need 50 rep to leave comments.http://stackoverflow.com/questions/1313439/how-to-type-in-vim-with-a-british-keyboard-layout-on-os-x/1313534#1313534Comment by Will Harris on How to type # in vim with a British keyboard layout on OS XWill Harris2009-08-21T18:30:03Z2009-08-21T18:30:03ZYes. That works.http://stackoverflow.com/questions/1313439/how-to-type-in-vim-with-a-british-keyboard-layout-on-os-x/1313458#1313458Comment by Will Harris on How to type # in vim with a British keyboard layout on OS XWill Harris2009-08-21T18:14:45Z2009-08-21T18:14:45ZNo. I just get ^[3 ("\x1b3").http://stackoverflow.com/questions/1269104/textmate-git-commands-fail-with-sh-line-1-git-command-not-found/1269116#1269116Comment by Will Harris on Textmate git commands fail with 'sh: line 1: git: command not found'Will Harris2009-08-12T22:42:31Z2009-08-12T22:42:31ZYou beat be to the answer.http://stackoverflow.com/questions/1147368/amazon-sqs-in-objective-c/1147966#1147966Comment by Will Harris on Amazon SQS in objective cWill Harris2009-07-20T15:16:34Z2009-07-20T15:16:34ZDiscussed here: <a href="http://stackoverflow.com/questions/1153853/amazon-sqs-for-iphone" rel="nofollow" title="amazon sqs for iphone">stackoverflow.com/questions/1153853/…</a>http://stackoverflow.com/questions/1144099/help-with-regular-expressionComment by Will Harris on Help with regular expressionWill Harris2009-07-17T15:58:29Z2009-07-17T15:58:29ZI think your examples are wrong. None of them start with 6 spaces. If you add a couple of spaces to the beginning, they all match the 31 alphanumerics (or spaces) rule.