unforgiven

2,120
Reputation
292 views

Registered User

Name unforgiven
Member for 9 months
Seen 3 hours ago
Website
Location Italy
Age 40
A computer science university professor, developing for the unix environment since 1987, for the mac since 1988, and for the iPhone since 2008. Especially interested in parallel and distributed computing.
Nov
19
asked New and noteworthy section on the App Store
Nov
18
comment Displaying addressbook data acording to a certain search criteria
Here is the programming guide: developer.apple.com/iphone/library/…
Nov
17
accepted Adding a UINavigationBar to UITabBarController
Nov
14
accepted Displaying addressbook data acording to a certain search criteria
Nov
12
comment Best practice for assigning new objects to retained properties?
Ok, this makes sense. Is there any Apple doc discussing this in more detail? Thank you in advance for sharing this.
Nov
12
answered Best practice for assigning new objects to retained properties?
Nov
11
comment adhoc app installation failed in iPhone , why ?
it is the last setting in the Deployment section.
Nov
11
comment adhoc app installation failed in iPhone , why ?
Yes, 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.
Nov
11
revised adhoc app installation failed in iPhone , why ?
added 174 characters in body
Nov
11
answered adhoc app installation failed in iPhone , why ?
Nov
10
answered iPhone UI addSubview causing concurrency exception
Nov
10
accepted Core Data, iPhone, setting an attribute on an entity and retrieving it with “one-to-many” relations
Nov
10
accepted Why am I seeing the following warning: “Messages without a matching method signature wii be assumed to return ‘id’ and accept’…’as arguments “?
Nov
10
answered Why am I seeing the following warning: “Messages without a matching method signature wii be assumed to return ‘id’ and accept’…’as arguments “?
Nov
10
comment how to resume recording after interruption occured in iphone?
Please 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.
Nov
9
answered Core Data / Cocoa : @distinctUnionOfObjects not returning a usable NSArray*
Nov
8
accepted iPhone: Doubt on type of App ID creation?
Nov
7
comment iPhone: Doubt on type of App ID creation?
Apple 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 ilime.com and urbanairship.com if you do not want to manage yourself a server.
Nov
7
answered iPhone: Doubt on type of App ID creation?
Nov
3
accepted Custom action after ABPeoplePickerNavigationController is dismissed
Nov
3
comment Is there any ready-made calendar control for iPhone apps?
I strongly agree. It's also my choice BTW.
Oct
31
accepted Why is AVAudioRecorder prepareToRecord Failing?
Oct
31
answered Why is AVAudioRecorder prepareToRecord Failing?
Oct
30
answered How hard is developing for iPhone?
Oct
27
answered Multi-Threading question in Objective-C 2.0
Oct
26
accepted How do I create many temporary objects and then save only one using Core Data?
Oct
26
answered iphone SDK detect Wifi and Carrier network
Oct
25
revised How do I create many temporary objects and then save only one using Core Data?
added 567 characters in body
Oct
25
answered How do I create many temporary objects and then save only one using Core Data?
Oct
23
answered CoreData countForFetchRequest says ‘entity not found’
Oct
22
comment Is it possible to create a real nondetached (joinable) thread in iPhone OS?
Ok, to be more precise, it is the standard way to terminate a unix daemon application.
Oct
22
comment Is it possible to create a real nondetached (joinable) thread in iPhone OS?
SIGTERM 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.
Oct
22
accepted Is it possible to create a real nondetached (joinable) thread in iPhone OS?
Oct
22
answered Is it possible to create a real nondetached (joinable) thread in iPhone OS?
Oct
22
revised How to prevent the view controllers in a tab bar controller from rotating?
added 429 characters in body
Oct
22
asked How to prevent the view controllers in a tab bar controller from rotating?
Oct
22
comment Core Data, iPhone, setting an attribute on an entity and retrieving it with “one-to-many” relations
No, 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!
Oct
21
accepted Using a secure web service from iPhone with SOAP
Oct
21
accepted CoreData Vs FMBD for iPhone
Oct
19
comment Core Data, iPhone, setting an attribute on an entity and retrieving it with “one-to-many” relations
You 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.
Oct
18
comment Should an NSLock instance be “global”?
I 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.
Oct
18
revised iphone updateToLocation works differently over 3G versus wireless network?
added 71 characters in body; edited body
Oct
18
revised iphone updateToLocation works differently over 3G versus wireless network?
added 24 characters in body
Oct
18
answered iphone updateToLocation works differently over 3G versus wireless network?
Oct
18
answered Should an NSLock instance be “global”?
Oct
18
answered iPhone Key-Value Observer: observer not registering in UITableViewController
Oct
18
answered Core Data, iPhone, setting an attribute on an entity and retrieving it with “one-to-many” relations
Oct
18
answered Using a secure web service from iPhone with SOAP
Oct
15
comment How to use UISearchDisplayController from a controller within an UITabBar controller ?
The 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.
Oct
15
answered disordered/ordered context fetching