Will Harris

3,993
Reputation
237 views

Registered User

Name Will Harris
Member for 1 year
Seen 1 hour ago
Website
Location London, UK
Age 32
I'm a free range software developer building applications for iPhone and the web in Objective-C, Python, and Ruby.
22h
accepted Import and work with an SQL database in Xcode
1d
answered Import and work with an SQL database in Xcode
1d
revised How to write lambda methods in Objective-C ?
Update to reflect existance of blocks in 10.6.
Nov
13
accepted Customising the colour scheme of the Core Location confirmation alert
Nov
13
answered iPhone MVC. Need some help with understanding how to correctly pass data from Controller to View.
Nov
13
answered Customising the colour scheme of the Core Location confirmation alert
Oct
27
accepted do i need to sign my app before submitting to app store?
Oct
22
accepted UIView. How do I redisplay a “data driven” UIView?
Oct
21
answered MKMapView: Get clicked event on annotation pin
Oct
21
answered Can I display a driving track between two points using the map kit ?
Oct
21
answered iPhone development Unit Testing Linking Problem
Oct
21
accepted Does iPhone OS distinguish between foreground and background threads?
Oct
21
revised Does iPhone OS distinguish between foreground and background threads?
Added some method names.
Oct
21
answered Does iPhone OS distinguish between foreground and background threads?
Oct
19
comment Find the Smallest Integer Not in a List
Ants, 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.
Oct
19
comment Find the Smallest Integer Not in a List
Breaking out the the loop early makes the runtime O(n^2).
Oct
19
answered Find the Smallest Integer Not in a List
Oct
19
accepted What is the CouchDB equivalent of the SQL COUNT(*) aggregate function?
Oct
19
answered What is the CouchDB equivalent of the SQL COUNT(*) aggregate function?
Oct
15
answered How to open iphone project’s .m files on windows operating system
Oct
13
revised Single quotes vs. double quotes in Python
Correct a typo.
Oct
13
accepted how to detect which cell is clicked then generate next view according to it in iphone uitableview?
Oct
12
accepted Drawing a line in a custom UITableViewCell
Oct
12
awarded  Good Answer
Oct
8
answered iPhone SDK on PowerPC?
Oct
8
revised iphone sdk - UITableView - cannot assign a table to the table view
Indent code block.
Oct
4
answered UIView. How do I redisplay a “data driven” UIView?
Oct
1
accepted Removing MKMapView Annotations causes leaks.
Sep
29
answered Removing MKMapView Annotations causes leaks.
Sep
21
awarded  Necromancer
Sep
21
awarded  Necromancer
Sep
14
answered do i need to sign my app before submitting to app store?
Sep
14
answered code sign error while installing application on iPhone
Sep
13
comment Find all rows ordered by method in ActiveRecord
My question is about whether I can do the sort with the ActiveRecord library. I've edited the question to make that (hopefully) more clear.
Sep
13
revised Find all rows ordered by method in ActiveRecord
Clarification
Sep
13
comment Find all rows ordered by method in ActiveRecord
The database table matching the model class has id (an integer), name (a string), and some other fields.
Sep
13
revised Find all rows ordered by method in ActiveRecord
added 24 characters in body
Sep
13
asked Find all rows ordered by method in ActiveRecord
Sep
6
answered Drawing a line in a custom UITableViewCell
Sep
6
awarded  Yearling
Sep
2
answered What dpi resolution is used for an iPhone App ?
Sep
1
awarded  Enlightened
Sep
1
awarded  Nice Answer
Aug
30
accepted What are the benefits/limitations of MacRuby and has anyone used it to program for iPhone?
Aug
28
comment understanding methods in objective-c
The Cocoa Fundamentals Guide says (tinyurl.com/howdelegationworks) '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.
Aug
28
revised understanding methods in objective-c
Removed mention of delegates.
Aug
28
accepted iPhone memory management Question
Aug
26
comment understanding methods in objective-c
@bbum, I don't think delegate protocols are required to have only optional methods. See SKProductsRequestDelegate and ABNewPersonViewControllerDelegate for examples having required methods.
Aug
25
comment GPS or triangulation when setting user position on map????
You 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.
Aug
25
answered iPhone memory management Question