User unforgiven - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T09:57:49Zhttp://stackoverflow.com/feeds/user/68814http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1766482/new-and-noteworthy-section-on-the-app-store-1New and noteworthy section on the App Store [closed]unforgiven2009-11-19T20:58:29Z2009-11-19T21:24:54Z
<p>How does the New and Noteworthy section of the App Store work?
Any application released will be listed in this section automatically after a certain amount of days or is it Apple that decides for just a small subset of the released applications?</p>
<p>Thank you in advance.</p>
http://stackoverflow.com/questions/1720419/best-practice-for-assigning-new-objects-to-retained-properties/1720868#17208681Answer by unforgiven for Best practice for assigning new objects to retained properties?unforgiven2009-11-12T09:01:06Z2009-11-12T09:01:06Z<p>For many objects, you may use directly a method that returns an autoreleased instance. As an example, I usually write the equivalent of your code snippet as follows:</p>
<p>thing.number = [NSNumber numberWithInt:1];</p>
<p>Note that since your property is retaining the NSNumber, you will need to release it later, when you are done with the property.</p>
<p>Anyway, when this does not apply because you do not have constructors returning autoreleased objects, your pattern 1 is definitely correct. </p>
<p>Instead, pattern 2 seems to me incorrect for the following reason: you first assign the NSNumber to your property, then you release your property. However, you need to release the NSNumber you have allocated, not the one that was retained by your property (you will do this later,once again when you are done with the property). The net effect of pattern 2 should be a memory leak (the NSNumber allocated is not released) and your property not containing the NSNumber (because you first retained it and then released it). </p>
http://stackoverflow.com/questions/1715253/adhoc-app-installation-failed-in-iphone-why/1715368#17153682Answer by unforgiven for adhoc app installation failed in iPhone , why ?unforgiven2009-11-11T14:05:32Z2009-11-11T14:13:44Z<p>It appears that the device on which your friend is trying to install your app is not able to validate the application's signature. Basically this means that the provisioning profile you sent to your friend does not match the actual signature (if any) applied when compiling for ad hoc distribution. Try checking the following:</p>
<ol>
<li>verify that you added a correct
Entitlements.plist file to your
application. </li>
<li>verify that you added
the Entitlements.plist file to your
Ad Hoc settings for building the
app. </li>
<li>verify that the certificate you
are using to sign the application
(in your Ad Hoc settings) actually
is valid for ad hoc distribution. </li>
<li>verify that you actually built the
application using a base sdk related
to the device, not the simulator and
the Ad Hoc distribution settings.</li>
<li>verify that the provisioning profile
you sent is meant for ad hoc
distribution and that it includes
correctly the device of your friend.</li>
</ol>
http://stackoverflow.com/questions/1711700/iphone-ui-addsubview-causing-concurrency-exception/1711827#17118270Answer by unforgiven for iPhone UI addSubview causing concurrency exceptionunforgiven2009-11-10T22:53:36Z2009-11-10T22:53:36Z<p>From the documentation:</p>
<p>Enumeration is “safe”—the enumerator has a mutation guard so that if you attempt to modify the collection during enumeration, an exception is raised.</p>
<p>Basically, this means that you are not allowed to add/remove objects to a collection (say an array) while you are enumerating it using the fast enumeration introduced in Objective-C 2.0. because doing so will render the mutation guard invalid. </p>
<p>In your case, the collection is related to a view hierarchy. If you want to add and/or remove views to this particular collection, do not use fast enumeration.</p>
http://stackoverflow.com/questions/1706958/why-am-i-seeing-the-following-warning-messages-without-a-matching-method-signat/1706988#17069883Answer by unforgiven for Why am I seeing the following warning: "Messages without a matching method signature wii be assumed to return 'id' and accept'...'as arguments "?unforgiven2009-11-10T10:33:40Z2009-11-10T10:33:40Z<p>Probably because the method related to</p>
<pre><code>[viewSlider slideView:view1 secondView:view2];
</code></pre>
<p>does not appear in the header file of your ViewSlider.</p>
http://stackoverflow.com/questions/1700803/core-data-cocoa-distinctunionofobjects-not-returning-a-usable-nsarray/1701510#17015102Answer by unforgiven for Core Data / Cocoa : @distinctUnionOfObjects not returning a usable NSArray*unforgiven2009-11-09T14:52:41Z2009-11-09T14:52:41Z<p>You should do the following:</p>
<pre><code>NSArray *groups = [parent valueForKeyPath:@"@distinctUnionOfObjects.children.groupByProperty"];
Child *child = [groups objectAtIndex:x];
</code></pre>
http://stackoverflow.com/questions/1692320/iphone-doubt-on-type-of-app-id-creation/1692344#16923442Answer by unforgiven for iPhone: Doubt on type of App ID creation?unforgiven2009-11-07T07:41:49Z2009-11-07T07:41:49Z<p>You should choose a wildcard App ID if you do not plan to use push notifications and/or in App purchase. In your case, since you plan to start with a free version, then to provide a priced new version you should choose an explicit App ID reflecting the name of your application, and use in App purchase to allow people to buy the contents related to your priced version. This is what Apple is now recommending. Basically, the folks at Apple do not want us to develop a light and a priced version. They want a single App that can offer free contents and priced contents through in App purchase. </p>
http://stackoverflow.com/questions/1651917/why-is-avaudiorecorder-preparetorecord-failing/1653787#16537871Answer by unforgiven for Why is AVAudioRecorder prepareToRecord Failing?unforgiven2009-10-31T08:33:32Z2009-10-31T08:33:32Z<p>It is failing because you did not initialize the AVAudioRecorder object using proper settings. Do this before initializing it:</p>
<pre><code> NSMutableDictionary recordSetting =
[[NSDictionary alloc] initWithObjectsAndKeys:
[NSNumber numberWithFloat: 44100.0], AVSampleRateKey,
[NSNumber numberWithInt: kAudioFormatAppleLossless], AVFormatIDKey,
[NSNumber numberWithInt: 1], AVNumberOfChannelsKey,
[NSNumber numberWithInt: AVAudioQualityMax], AVEncoderAudioQualityKey,
nil];
</code></pre>
<p>then you can instantiate it using</p>
<pre><code>audioRecorder = [[AVAudioRecorder alloc] initWithURL:destinationUrl
settings:recordSetting
error:&recorderSetupError];
</code></pre>
http://stackoverflow.com/questions/1648340/how-hard-is-developing-for-iphone/1648407#16484073Answer by unforgiven for How hard is developing for iPhone?unforgiven2009-10-30T07:04:42Z2009-10-30T07:04:42Z<p>It's rather difficult to answer your question owing to the fact that often this is highly subjective in my previous experience.</p>
<p>1) Generally the effort is much lower than the one required when using a different platform. Those acquainted to software engineering principles including the use of design patterns etc will find that the SDK is built around all of the common abstraction we are used (except a very small part still using C style procedural APIs).</p>
<p>2) The learning curve is steep for people rolling this on their own, is really easy for people being taught on the matter. A fast course style exposure to the SDK and tools (say 40 hours total) it's usually enough for people to become proficient enough.</p>
<p>3) There are no hardware issue to be taken into account, at least in my experience. As already pointed out by Zoul, provisioning the devices takes some time to get used to. The submission/review process is in my opinion a little easier.</p>
<p>4) Selling is as difficult as it is on other platforms. But if you have got a really brilliant idea, then you usually sell many copies of your software. Or, the idea may not be so brilliant, but the software you develop is fundamental for a specific field targeting people always on the move etc. Just developing something without a clear target is the perfect recipe for disaster.</p>
http://stackoverflow.com/questions/1632535/multi-threading-question-in-objective-c-2-0/1633229#16332290Answer by unforgiven for Multi-Threading question in Objective-C 2.0unforgiven2009-10-27T19:46:23Z2009-10-27T19:46:23Z<p>If you simply need to protect a critical section of code, why not using the Objective-C @synchronized directive? Of course, using NSLock will also work, but you need to explicitly manage the NSLock instance. From the documentation:</p>
<p>Objective-C supports multithreading in applications. This means that two threads can try to modify the same object at the same time, a situation that can cause serious problems in a program. To protect sections of code from being executed by more than one thread at a time, Objective-C provides the @synchronized() directive.</p>
<p>The @synchronized()directive locks a section of code for use by a single thread. Other threads are blocked until the thread exits the protected code; that is, when execution continues past the last statement in the @synchronized() block.</p>
<p>The @synchronized() directive takes as its only argument any Objective-C object, including self. This object is known as a mutual exclusion semaphore or mutex. It allows a thread to lock a section of code to prevent its use by other threads. You should use separate semaphores to protect different critical sections of a program. It’s safest to create all the mutual exclusion objects before the application becomes multithreaded to avoid race conditions.</p>
<p>Listing 12-1 shows an example of code that uses self as the mutex to synchronize access to the instance methods of the current object. You can take a similar approach to synchronize the class methods of the associated class, using the Class object instead of self. In the latter case, of course, only one thread at a time is allowed to execute a class method because there is only one class object that is shared by all callers.</p>
<p>Listing 12-1 Locking a method using self</p>
<pre><code>- (void)criticalMethod
{
@synchronized(self) {
// Critical code.
...
}
}
</code></pre>
http://stackoverflow.com/questions/1625158/iphone-sdk-detect-wifi-and-carrier-network/1625388#16253881Answer by unforgiven for iphone SDK detect Wifi and Carrier networkunforgiven2009-10-26T15:08:10Z2009-10-26T15:08:10Z<p>The Reachability example may be overkill if you just want to detect whether or not you are connected, and what type of connection you are using if you are connected. Indeed the example also contains code showing how to setup and use callbacks that notify you of state changes. </p>
<p>For a snippet of source code telling you exactly if you are connected or not, and what type of connection you are using, you may want to take a look at my answer to a similar question, posted <a href="http://stackoverflow.com/questions/1448411/how-to-check-for-local-wi-fi-not-just-cellular-connection-using-iphone-sdk">here</a>. </p>
http://stackoverflow.com/questions/1619911/how-do-i-create-many-temporary-objects-and-then-save-only-one-using-core-data/1620319#16203191Answer by unforgiven for How do I create many temporary objects and then save only one using Core Data?unforgiven2009-10-25T08:05:15Z2009-10-25T08:14:31Z<p>You should use a different context for each object. Using a separate managed object context allows you to work as follows. When the user selects its favorite object, you just discard the contexts related to the remaining result objects. No need to merge changes etc. There is basically a tradeoff. You end up managing (creating/discarding) several contexts, but then you accomplish your goal easily. Otherwise, you can still do this using just a single context. However, you have to explicitly insert or delete each object as shown in the following code snippets.</p>
<p>Try this. Only for the favorite object you want to save, do the following:</p>
<pre><code>[managedObjectContext insertObject:theFavorite];
</code></pre>
<p>For each of the other result objects do this instead:</p>
<pre><code>[managedObjectContext deleteObject:aResult];
</code></pre>
<p>then save as usual</p>
<pre><code>NSError *error = nil
if (![managedObjectContext save:&error]) {
// Handle error
}
</code></pre>
<p>This will save ONLY your selected, favorite object.</p>
http://stackoverflow.com/questions/1611342/coredata-countforfetchrequest-says-entity-not-found/1612080#16120800Answer by unforgiven for CoreData countForFetchRequest says 'entity not found'unforgiven2009-10-23T08:28:57Z2009-10-23T08:28:57Z<p>The issue you are experiencing is due to a wrong use of countForFetchRequest:error:. Indeed, in your code snippet you first execute the fetch request using executeFetchRequest:error, then proceed to use countForFetchRequest:error:.</p>
<p>From the method documentation:</p>
<p>Returns the number of objects a given fetch request would have returned if it had been passed to executeFetchRequest:error:.</p>
<p>Therefore you must NOT execute the fetch request before calling countForFetchRequest:error:.</p>
http://stackoverflow.com/questions/1608525/is-it-possible-to-create-a-real-nondetached-joinable-thread-in-iphone-os/1608747#16087471Answer by unforgiven for Is it possible to create a real nondetached (joinable) thread in iPhone OS?unforgiven2009-10-22T17:31:08Z2009-10-22T17:31:08Z<p>I am not sure if using a joinable thread allows you to defer application termination until your thread is done and you join it. Probably not. You can use POSIX threads in place of NSThread or NSOperation/NSOperationQueue, but you will still have to take into account the possibility of the user terminating the application. </p>
<p>Now, termination may happen in one of two possible ways: </p>
<p>1) the app receives a SIGTERM signal that you can intercept through the applicationWillTerminate: method, which is then the SIGTERM signal handler;</p>
<p>2) the app receives SIGKILL: in this case you can't catch the signal through a signal handler and you are not allowed (of course) to ignore it setting the signal disposition.</p>
<p>If SIGTERM is the only signal sent to terminate the application, then you should be able to continue the work in your thread to save the data and exit gracefully. However, it may be that after a timeout elapses (the 5 seconds you mentioned), the app also receives SIGKILL and this event causes its immediate termination. This may be what actually happens when the user presses the home button: the iPhone OS sends SIGTERM to the app, fires a timer and when the timeout occurs it sends SIGKILL. But nothing in the documentation confirms this (or disproves it, to the best of my knowledge).</p>
<p>To manage this, you should do your best (application dependent of course) to save the app state atomically and as soon as possible, and you should be prepared to cancel your POSIX thread (when it reaches one of the possible cancellation points) and rollback as needed in order to cleanup before exiting. </p>
http://stackoverflow.com/questions/1606066/how-to-prevent-the-view-controllers-in-a-tab-bar-controller-from-rotating0How to prevent the view controllers in a tab bar controller from rotating?unforgiven2009-10-22T09:33:26Z2009-10-22T09:59:59Z
<p>I have a tab bar controller managing 4 tabs. I have subclassed the tab bar controller so that the shouldAutorotateToInterfaceOrientation: method only allows a specific view controller in one of the tabs to rotate. Everything works almost fine: the controllers in the remaining tabs do not rotate. However, when the view controller which is allowed to rotate actually rotates, if the user taps one of the remaining tabs, the corresponding view controller also appear rotated (even though its shouldAutorotateToInterfaceOrientation: method explicitly returns NO).</p>
<p>How do I prevent this from happening?</p>
<p>To be clear, here is an example. Tapping on the tabs 0,1, or 2 and trying to rotate the device, nothing happens (correctly). Tapping on the tab 4 and rotating the device, the view associated to the view controller of tab 4 is rotated (correctly). Now, still holding the iPhone in the rotated landscape orientation and tapping another tab (0,1, or 2) reveal a rotated view (which is not correct and what I am trying to avoid).</p>
http://stackoverflow.com/questions/1488600/iphone-debugging-how-to-resolve-failed-to-get-the-task-for-process1iPhone Debugging: How to resolve 'failed to get the task for process'?unforgiven2009-09-28T18:29:27Z2009-10-20T23:06:09Z
<p>I have just added a provisioning profile to XCode (needed to support notifications and in app purchase), setup as needed the build configuration for ad hoc distribution, and tried to run the app on the device (I have done this several times in the past, without any problem).</p>
<p>The app is installed, but it does not start. On the console, I see the following message:</p>
<pre><code>Error launching remote program: failed to get the task for process 82.
Error launching remote program: failed to get the task for process 82.
The program being debugged is not being run.
The program being debugged is not being run.
</code></pre>
<p>However, if I start the application on the device manually, it works as expected. I have recently installed the latest XCode 3.2 for Snow Leopard. Is this a known bug of this version of XCode or am I doing something wrong?</p>
<p>EDIT: It works fine with release distribution using the development provisioning profile.
I have checked again the ad hoc provisioning profile to make sure it includes the device I am using.</p>
http://stackoverflow.com/questions/1580920/iphone-updatetolocation-works-differently-over-3g-versus-wireless-network/1584600#15846000Answer by unforgiven for iphone updateToLocation works differently over 3G versus wireless network?unforgiven2009-10-18T11:01:51Z2009-10-18T11:53:49Z<p>The GPS unit has nothing to do with the network connection (unless the GPS signal is not available, in which case the GPS may try to use the wifi hotspot or the cell your device is connected to in order to infer your location). It works independently of it if the GPS signal is available, and the network is only used to actually show the map. From the code snipped you posted, you only show the map when you reach an horizontal accuracy less than 100 meters, otherwise you let the GPS unit updating the location. However, if you try your code in the exact SAME place, the GPS unit on your device should always return the same updates. Therefore, I really do not understand the behaviour you are describing: this would be possible only if the GPS unit returned different updates for the same place when a different network connection is available because the GPS signal is not available. Are you seeing the same latitude/longitude in the two cases or not? Are you seeing the same accuracy? Be careful to measure this in exactly the same place in both cases. </p>
<p>If you obtain the same updates, then it may be possible that your 3G cellular connection is simply not powerful enough or is only apparently available, so that you did not get the map. Try testing the speed of your 3G network from the same place.</p>
<p>A related consideration. You should allow the GPS unit to work until either a specified amount of time elapses (say 20 seconds, use NSTimer for this) or until you reach a specified level of accuracy, whichever happens first. Otherwise you may end up consuming too much the battery.</p>
http://stackoverflow.com/questions/1582574/should-an-nslock-instance-be-global/1584555#15845550Answer by unforgiven for Should an NSLock instance be "global"?unforgiven2009-10-18T10:30:21Z2009-10-18T10:30:21Z<p>If multiple objects access your object only to read its contents, then you do not need a lock at all. If at least one of the objects accesses your object to write/update its contents, then it does not matter if the other objects access your object to read or write/update it: in this case you need a lock.</p>
<p>Now, in order to correctly protect your object (in a critical section of code where multiple objects may access it), you must use the SAME LOCK INSTANCE which must then be shared by ALL of the possible objects accessing the object you are willing to protect.</p>
<p>If your application need to protect an object that may be accessed simultaneously by the majority of the classes, then having a single lock instance is fine. If you want better performances (especially if the number of simultaneous accesses to your object is high), then you can have multiple locks. Each lock will be responsible for allowing/denying access to a specific attribute/field of your object. This way, several objects may access your object changing a different attribute/field simultaneously. You are basically incrementing the number of concurrent operations on your object. However, each lock MUST STILL be shared among the other objects that will access the object you are protecting.</p>
<p>Having a lock instance for each controller simply does NOT work; this will NOT protect your object from concurrent accesses from other objects in different threads. NSLock is implemented using POSIX pthread mutexes, so it must be used in exactly the same way. This is also clearly stated in the NSLock documentation:</p>
<p>Warning: The NSLock class uses POSIX threads to implement its locking behavior. When sending an unlock message to an NSLock object, you must be sure that message is sent from the same thread that sent the initial lock message. Unlocking a lock from a different thread can result in undefined behavior.</p>
<p>So, in order to preserve the critical section semantics, it is the same thread that acquired the lock that is responsible for releasing it when done. Note also that the locking mechanism is intended for fast operations only, i.e. you should acquire a lock only for a short period of time before releasing it. If you need to wait for an unpredictable amount of time, then you need a different synchronization mechanism, namely a condition variable which is available through the NSCondition class. </p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/1582615/iphone-key-value-observer-observer-not-registering-in-uitableviewcontroller/1584443#15844430Answer by unforgiven for iPhone Key-Value Observer: observer not registering in UITableViewControllerunforgiven2009-10-18T09:15:09Z2009-10-18T09:15:09Z<p>Did you check if you instantiated your x object in viewDidLoad() before calling addObserver:forKeyPath:options:context: ? Your x object must be already allocated/initialized.</p>
<p>A minor consideration. Since the context parameter is declared as (void *), you should pass NULL, not nil (a null object pointer which stands for id 0, while NULL stands for (void *) 0; they represent both the same thing, 0, but in Objective C you must distinguish among nil, NULL and Nil which represents a null class pointer).</p>
http://stackoverflow.com/questions/1582655/core-data-iphone-setting-an-attribute-on-an-entity-and-retrieving-it-with-one/1584365#15843650Answer by unforgiven for Core Data, iPhone, setting an attribute on an entity and retrieving it with "one-to-many" relationsunforgiven2009-10-18T08:29:15Z2009-10-18T08:29:15Z<p>You need to correct a mistake you made in your model, to begin with. You can NOT have an attribute called "description" in your dreams entity: this is forbidden because "description" it's the name of a method.</p>
<p>From the Apple documentation (Core Data programming guide):</p>
<p>Note that a property name cannot be the same as any no-parameter method name of NSObject or NSManagedObject, for example, you cannot give a property the name “description” (see NSPropertyDescription).</p>
<p>The difference between addDreamObject: and addDream: is that the former is used to insert a Dream object in the to-many relationship, while the latter is used to insert or replace one-shot the contexts of the to-many relationship.</p>
<p>You should not use</p>
<pre><code>cell.textLabel.text = [[managedObject valueForKey:@"personName"] description];
</code></pre>
<p>you should use simply</p>
<pre><code>cell.textLabel.text = [managedObject valueForKey:@"personName"];
</code></pre>
<p>Regarding the dreams related to your person, you do not need an additional fetch request. Once you have your person object, you simply access that person's dreams as follows:</p>
<pre><code>for(Dream *dream in person.dreams){
// process your Dream object
}
</code></pre>
<p>Finally, it is not clear why you do not pass explicitly the managed object context to your DreamViewController as an instance variable. This is common practice, also shown in Apple sample codes. Another error is checking for</p>
<pre><code>if (fetchedObjects == nil)
</code></pre>
<p>because it is legal to return nil if the query actually found no objects; you must instead check if your NSError object is not nil (you must initialize it to nil BEFORE executing your fetch request): </p>
<pre><code>if(error)
</code></pre>
<p>The statement </p>
<pre><code>NSLog(@"The Dream object says: %@", [d description]);
</code></pre>
<p>may even crash your application, as explained at the beginning of my answer.</p>
http://stackoverflow.com/questions/1584063/using-a-secure-web-service-from-iphone-with-soap/1584271#15842710Answer by unforgiven for Using a secure web service from iPhone with SOAPunforgiven2009-10-18T07:41:38Z2009-10-18T07:41:38Z<p>Use gSOAP. It's a C/C++ library providing fast and secure access to web services; you can even develop your own. Even though it's not natively supporting Objective C, it's still IMHO the best open source web services library. Additional information and download can be found <a href="http://www.cs.fsu.edu/~engelen/soap.html" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/1257724/how-to-use-uisearchdisplaycontroller-from-a-controller-within-an-uitabbar-control1How to use UISearchDisplayController from a controller within an UITabBar controller ?unforgiven2009-08-10T23:08:32Z2009-10-15T15:41:29Z
<p>I have an UITabBar controller managing several controllers (using SDK 3.0). One of these is a tableView controller and I need to provide a search capability using the UISearchDisplayController. All of my code is based on Apple TableSearch example. However, when clicking on the tab, the tableView controller appears showing its related content, but no searchBar appears. I have checked the xib in IB to make sure that all of the outlets are properly set, but no matter what I try self.searchDisplayController is always nil and the search bar does not appear.</p>
<p>In practice I have replicated MainView.xib from the TableSearch example and set the file's owner class to the correct controller class for the tab. The outlets are sets as in the example MainView.xib. Am i missing any important step or doing something wrong?</p>
<p>Thank you in advance.</p>
http://stackoverflow.com/questions/1571773/disordered-ordered-context-fetching/1572288#15722880Answer by unforgiven for disordered/ordered context fetchingunforgiven2009-10-15T13:13:01Z2009-10-15T13:13:01Z<p>When you execute a fetch request without specifying that you want your items sorted by a specific key, you get a result array which is not ordered. You can extend your fetch request with a sort descriptor using a code snippet such as the following one.</p>
<pre><code> // Edit the sort key as appropriate.
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"value" ascending:YES selector:@selector(caseInsensitiveCompare:)];
NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:sortDescriptor, nil];
[fetchRequest setSortDescriptors:sortDescriptors];
[sortDescriptor release];
[sortDescriptors release];
</code></pre>
http://stackoverflow.com/questions/1505278/fastest-way-to-handle-uiimagepickercontroller-compression/1505472#15054721Answer by unforgiven for Fastest way to handle UIImagePickerController compressionunforgiven2009-10-01T17:56:58Z2009-10-01T17:56:58Z<p>You should not save a picture in the database, unless it's very small in size. The threshold which determines if the picture is small enough is, of course, highly subjective. In my humble opinion (and experience on the iPhone), it should not exceed one megabyte. Therefore, you should only save in the database small sized images, such as icons, thumbnails etc. For images beyond one megabytes you should simply store them as files in the filesystem, and put the filename (the image path) in the database. By the way, storing the image on the filesystem and its pathname in the database is extremely fast.</p>
<p>About compression: you can certainly compress the image using another thread, but consider whether or not it's really worth doing this. You can use a thread to save the image to a file, save the pathname in the database and return immediately the control to your user. You have (usually) plenty of space, but a very small computational power, even on the latest iPhone 3GS. Also, you should verify (I really do not know this) whether or not loading a compressed image through UIImageView requires more time w.r.t. a non compressed one such as a PNG. If your application will incur an additional overhead when loading a compressed image, then it may definitely not worth compressing your images. It's basically a tradeoff between space and speed. Hope this helps to decide.</p>
http://stackoverflow.com/questions/1503100/how-to-get-latitude-longitude-by-address-with-iphone-sdk/1503640#15036400Answer by unforgiven for how to get latitude\longitude by address with iphone sdk?unforgiven2009-10-01T12:21:21Z2009-10-01T12:21:21Z<p>The following method does what you asked for. You need to insert your Google maps key for this to work correctly.</p>
<pre><code>- (CLLocationCoordinate2D) geoCodeUsingAddress:(NSString *)address{
int code = -1;
int accuracy = -1;
float latitude = 0.0f;
float longitude = 0.0f;
CLLocationCoordinate2D center;
// setup maps api key
NSString * MAPS_API_KEY = @"YOUR GOOGLE MAPS KEY HERE";
NSString *escaped_address = [address stringByAddingPercentEscapesUsingEncoding: NSUTF8StringEncoding];
// Contact Google and make a geocoding request
NSString *requestString = [NSString stringWithFormat:@"http://maps.google.com/maps/geo?q=%@&output=csv&oe=utf8&key=%@&sensor=false&gl=it", escaped_address, MAPS_API_KEY];
NSURL *url = [NSURL URLWithString:requestString];
NSString *result = [NSString stringWithContentsOfURL: url encoding: NSUTF8StringEncoding error:NULL];
if(result){
// we got a result from the server, now parse it
NSScanner *scanner = [NSScanner scannerWithString:result];
[scanner scanInt:&code];
if(code == 200){
// everything went off smoothly
[scanner scanString:@"," intoString:nil];
[scanner scanInt:&accuracy];
//NSLog(@"Accuracy: %d", accuracy);
[scanner scanString:@"," intoString:nil];
[scanner scanFloat:&latitude];
[scanner scanString:@"," intoString:nil];
[scanner scanFloat:&longitude];
center.latitude = latitude;
center.longitude = longitude;
return center;
}
else{
// the server answer was not the one we expected
UIAlertView *alert = [[[UIAlertView alloc]
initWithTitle: @"Warning"
message:@"Connection to Google Maps failed"
delegate:nil
cancelButtonTitle:nil
otherButtonTitles:@"OK", nil] autorelease];
[alert show];
center.latitude = 0.0f;
center.longitude = 0.0f;
return center;
}
}
else{
// no result back from the server
UIAlertView *alert = [[[UIAlertView alloc]
initWithTitle: @"Warning"
message:@"Connection to Google Maps failed"
delegate:nil
cancelButtonTitle:nil
otherButtonTitles:@"OK", nil] autorelease];
[alert show];
center.latitude = 0.0f;
center.longitude = 0.0f;
return center;
}
}
center.latitude = 0.0f;
center.longitude = 0.0f;
return center;
}
</code></pre>
http://stackoverflow.com/questions/1485860/end-call-dont-return-to-app-automatic-in-iphone-3-1-version/1485890#14858903Answer by unforgiven for End call, don't return to app automatic in iphone 3.1 version.unforgiven2009-09-28T07:50:16Z2009-09-28T07:50:16Z<p>It's not a bug, it's how it works. Once you use openURL to transfer control to another app such as the Phone, SMS, Mail or Safari, your app is closed and control transferred to the app you specified in your URL. When the user is done with the app you invoked, closing it will not reopen your application.</p>
<p>You may modify your application so that if the user receives an incoming call and decides to answer it, control is returned to your app when the user terminates the call. But this is of course different from what you asked for.</p>
http://stackoverflow.com/questions/1485678/need-to-change-the-color-of-table-view-selection/1485752#14857521Answer by unforgiven for Need to change the color of table view selection!!!unforgiven2009-09-28T06:56:34Z2009-09-28T06:56:34Z<p>I do not think you can use a custom color. However, you can use the following property of UITableViewCell</p>
<pre><code>@property(nonatomic) UITableViewCellSelectionStyle selectionStyle
</code></pre>
<p>The selection style is a backgroundView constant that determines the color of a cell when it is selected. The default value is UITableViewCellSelectionStyleBlue. Since</p>
<pre><code>typedef enum {
UITableViewCellSelectionStyleNone,
UITableViewCellSelectionStyleBlue,
UITableViewCellSelectionStyleGray
} UITableViewCellSelectionStyle;
</code></pre>
<p>you can switch from the default blue to gray, or no colored selection at all.</p>
http://stackoverflow.com/questions/1485576/displaying-addressbook-data-acording-to-a-certain-search-criteria/1485740#14857400Answer by unforgiven for Displaying addressbook data acording to a certain search criteriaunforgiven2009-09-28T06:50:36Z2009-09-28T06:50:36Z<p>To the best of my knowledge, you can not do this using the ABPeoplePickerNavigationController.
You need to build your own UIViewController displaying the names matching your criteria. Finding matching contacts can be easily done using the C style Address Book API.</p>
http://stackoverflow.com/questions/1485413/coredata-vs-fmbd-for-iphone/1485724#14857241Answer by unforgiven for CoreData Vs FMBD for iPhoneunforgiven2009-09-28T06:43:00Z2009-09-28T06:43:00Z<p>FMDB is just an Objective-C wrapper around sqlite. As such, it does a good job. However, Core Data, when using sqlite as a back-end, may be even more efficient than using sqlite directly, and the framework also provides additional advantages.</p>
<p>Core Data Pro: faster in almost all of the cases, less work to do (Core Data may automatically enforces referential integrity, when setting an entity on one side of a relationships Core Data automatically sets the entity on the other side of the relationships etc).</p>
<p>Core Data Cons: very steep learning curve, especially for advanced features.</p>
<p>Definitely, I recommend switching to Core Data, especially if you did not start your implementation. The time required to learn how to use it will be more than repaid later.</p>
http://stackoverflow.com/questions/1482934/iphone-app-with-multiple-views-subviews-memory-is-not-being-deallocated/1484608#14846080Answer by unforgiven for iphone app with multiple views/subviews: memory is not being deallocatedunforgiven2009-09-27T22:05:56Z2009-09-28T05:55:03Z<p>Did you try setting your outlet variables to nil in dealloc?
You are correctly implementing the setView method, but you are setting your outlet variables to nil in the viewDidUnload method instead of dealloc. As discussed <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/MemoryMgmt/Articles/mmNibObjects.html#//apple%5Fref/doc/uid/TP40004998-SW2" rel="nofollow">here</a>, you should implement dealloc as follows:</p>
<pre><code>- (void)setView:(UIView *)aView {
if (!aView) { // view is being set to nil
// set outlets to nil, e.g.
self.anOutlet = nil;
}
// Invoke super's implementation last
[super setView:aView];
}
- (void)dealloc {
// release outlets and set outlet variables to nil
[anOutlet release], anOutlet = nil;
[super dealloc];
}
</code></pre>
<p><strong>EDIT</strong>: if the outlets are UIImageViews, then it may be the case that you need to do</p>
<pre><code>anOutlet.image = nil;
</code></pre>
<p>because setting the UIImage’s instance image property should increase the retain count of the UIImage’s instance by 1. </p>
http://stackoverflow.com/questions/1485576/displaying-addressbook-data-acording-to-a-certain-search-criteria/1485740#1485740Comment by unforgiven on Displaying addressbook data acording to a certain search criteriaunforgiven2009-11-18T15:20:47Z2009-11-18T15:20:47ZHere is the programming guide: <a href="http://developer.apple.com/iphone/library/DOCUMENTATION/ContactData/Conceptual/AddressBookProgrammingGuideforiPhone/100-Introduction/Introduction.html#//apple_ref/doc/uid/TP40007744-CH1-SW1" rel="nofollow">developer.apple.com/iphone/library/…</a>http://stackoverflow.com/questions/1720419/best-practice-for-assigning-new-objects-to-retained-properties/1720868#1720868Comment by unforgiven on Best practice for assigning new objects to retained properties?unforgiven2009-11-12T10:20:08Z2009-11-12T10:20:08ZOk, this makes sense. Is there any Apple doc discussing this in more detail? Thank you in advance for sharing this.http://stackoverflow.com/questions/1715253/adhoc-app-installation-failed-in-iphone-why/1715368#1715368Comment by unforgiven on adhoc app installation failed in iPhone , why ?unforgiven2009-11-11T14:40:38Z2009-11-11T14:40:38Zit is the last setting in the Deployment section.http://stackoverflow.com/questions/1715253/adhoc-app-installation-failed-in-iphone-why/1715368#1715368Comment by unforgiven on adhoc app installation failed in iPhone , why ?unforgiven2009-11-11T14:31:58Z2009-11-11T14:31:58ZYes, you have to uncheck get-task-allow. For your build settings, do the following: set as base sdk the latest possible version, 3.1.2 currently, and set iPhone OS Deployment target to the first possible sdk, 3.0 (because you do not want to allow running on older 2.x devices). Then check carefully that the code signing identity refers to your ad hoc distribution provisioning and that the related AppID is correct: do not forget to set the application identifier according to your AppID in the properties pane of your target.http://stackoverflow.com/questions/1706064/how-to-resume-recording-after-interruption-occured-in-iphoneComment by unforgiven on how to resume recording after interruption occured in iphone?unforgiven2009-11-10T09:57:06Z2009-11-10T09:57:06ZPlease post the code you are using to start/stop/pause recording. Are your releasing every time the AVAudioRecorder object and instantiating a new one? This may explain why each time you start recording using a different file.http://stackoverflow.com/questions/1692320/iphone-doubt-on-type-of-app-id-creation/1692344#1692344Comment by unforgiven on iPhone: Doubt on type of App ID creation?unforgiven2009-11-07T16:37:24Z2009-11-07T16:37:24ZApple will sell your application. Say it is a videogame. You can imagine that the first level is free. Then, if the users want to continue playing the game, the buy through in App purchase the next levels. It is basically the same application, but contents are available for purchase directly within the application. There are no additional costs for in App purchase, but it's up to you to manage the server hosting the contents. To this aim, there are also some services such as <a href="https://www.ilime.com/" rel="nofollow">ilime.com</a> and <a href="http://urbanairship.com/" rel="nofollow">urbanairship.com</a> if you do not want to manage yourself a server.http://stackoverflow.com/questions/997779/is-there-any-ready-made-calendar-control-for-iphone-apps/997960#997960Comment by unforgiven on Is there any ready-made calendar control for iPhone apps?unforgiven2009-11-03T06:55:03Z2009-11-03T06:55:03ZI strongly agree. It's also my choice BTW.http://stackoverflow.com/questions/1608525/is-it-possible-to-create-a-real-nondetached-joinable-thread-in-iphone-os/1608747#1608747Comment by unforgiven on Is it possible to create a real nondetached (joinable) thread in iPhone OS?unforgiven2009-10-22T17:52:26Z2009-10-22T17:52:26ZOk, to be more precise, it is the standard way to terminate a unix daemon application. http://stackoverflow.com/questions/1608525/is-it-possible-to-create-a-real-nondetached-joinable-thread-in-iphone-os/1608747#1608747Comment by unforgiven on Is it possible to create a real nondetached (joinable) thread in iPhone OS?unforgiven2009-10-22T17:51:25Z2009-10-22T17:51:25ZSIGTERM is one of the standard POSIX signals. It is the iPhone OS that sends the signal to the application in response to the user pressing the home button. As the name implies, SIGTERM stands for termination signal. It is the standard way to terminate a unix application, and, under the hood, an iPhone OS is also a unix application.http://stackoverflow.com/questions/1582655/core-data-iphone-setting-an-attribute-on-an-entity-and-retrieving-it-with-one/1584365#1584365Comment by unforgiven on Core Data, iPhone, setting an attribute on an entity and retrieving it with "one-to-many" relationsunforgiven2009-10-22T05:55:36Z2009-10-22T05:55:36ZNo, it's the whole, global ManagedObjectContext. You need to pass it explicitly and not through an object also for the following reason: if you delete your object and then need to create a new one or deal with others, you can not do this: deleting the object you lose the context as well!http://stackoverflow.com/questions/1582655/core-data-iphone-setting-an-attribute-on-an-entity-and-retrieving-it-with-one/1584365#1584365Comment by unforgiven on Core Data, iPhone, setting an attribute on an entity and retrieving it with "one-to-many" relationsunforgiven2009-10-19T14:23:44Z2009-10-19T14:23:44ZYou are right, an object always has a reference to it's ManagedObjectContext (it's a property). My suggestion to pass the NSManagedObjectContext to the view controller is just more general and works in all of the cases in which you do not pass a NSManagedObject to the controller but the controller need to create a new NSManagedObject during its course of action.http://stackoverflow.com/questions/1582574/should-an-nslock-instance-be-global/1584555#1584555Comment by unforgiven on Should an NSLock instance be "global"?unforgiven2009-10-18T18:57:11Z2009-10-18T18:57:11ZI suggest reading the documentation for posix pthread mutexes. You will see that a mutex (an NSLock) must be shared among all of the threads that will access the object you want to protect. Note that I am not saying that it must be shared globally across all of the threads: only among the ones will access your object. What you say about locking two times in a row is correct: unless the mutex is recursive a problem will arise. To use recursive mutexes you must use a NSRecursiveLock object. See the "Threading Programming Guide" documentation, in particular the "Synchronization" section.http://stackoverflow.com/questions/1257724/how-to-use-uisearchdisplaycontroller-from-a-controller-within-an-uitabbar-control/1573192#1573192Comment by unforgiven on How to use UISearchDisplayController from a controller within an UITabBar controller ?unforgiven2009-10-15T22:20:52Z2009-10-15T22:20:52ZThe interface was laid out using Interface Builder, so that you should try to replicate the steps I have outlined. Of course, you can also do this programmatically. Just make sure that the following parent-child relationships are in place in IB: UITabBarController tab -> UINavigationController -> your controller exposing the searchBar.http://stackoverflow.com/questions/1505278/fastest-way-to-handle-uiimagepickercontroller-compression/1505472#1505472Comment by unforgiven on Fastest way to handle UIImagePickerController compressionunforgiven2009-10-03T07:35:07Z2009-10-03T07:35:07ZThis is interesting. Thank you for sharing the result of your test.http://stackoverflow.com/questions/1505278/fastest-way-to-handle-uiimagepickercontroller-compression/1505472#1505472Comment by unforgiven on Fastest way to handle UIImagePickerController compressionunforgiven2009-10-02T07:29:53Z2009-10-02T07:29:53ZAs pointed out by Kendall, I think PNG will be faster. Give it a try.