| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 4 months |
| seen | 20 hours ago | |
| stats | profile views | 29 |
|
Apr 13 |
awarded | Popular Question |
|
Apr 4 |
comment |
Dealing with Blocks, completion handlers, dispatch_async vs dispatch_sync It's worth pointing out that if doneChecking is going to operate on any UI elements that it should be done in the main thread and not in fetchQ. Use another dispatch call but just request the main queue. |
|
Mar 11 |
awarded | Popular Question |
|
Feb 10 |
awarded | Popular Question |
|
Feb 2 |
awarded | Popular Question |
|
Jan 3 |
comment |
How to present a view controller from another view controller @Dpk As per the UIViewController docs you'll want to use one of the methods listed under "Presenting Another View Controller’s Content" to present a view controller programmatically when not using storyboards. I'd start with presentViewController:animated:completion: and dismissViewControllerAnimated:completion: unless you really mean to present a view controller modally. |
|
Jan 1 |
awarded | Yearling |
|
Nov 26 |
comment |
Where to place the “Core Data Stack” in a Cocoa/Cocoa Touch application More supporting evidence against using the app delegate to distribute your data model: hollance.com/2012/02/dont-abuse-the-app-delegate |
|
Nov 26 |
comment |
Sharing Data between Views through App Delegate Using the app delegate to serve the data can be dangerous. See this post: hollance.com/2012/02/dont-abuse-the-app-delegate Instead, I would suggest using NSNotification or delegation to alert your dependent views that an object was updated. |
|
Nov 19 |
awarded | Tumbleweed |
|
Nov 15 |
comment |
PBKDF2 using CommonCrypto on iOS It's better to use SecRandomCopyBytes() for pseudo-random number generation in cryptography applications. - Otherwise, great code! I like the PBKDF2 round estimation bit =) |
|
Sep 21 |
awarded | Custodian |
|
Sep 13 |
awarded | Popular Question |
|
Aug 8 |
answered | How to authenticate username and password using keychain |
|
Jul 18 |
accepted | Covering the root view with another immediately upon launch or resume |
|
Jul 18 |
asked | Covering the root view with another immediately upon launch or resume |
|
May 15 |
revised |
How to remove white background of UIImageView? deleted 43 characters in body |
|
May 15 |
answered | How to remove white background of UIImageView? |
|
May 9 |
comment |
C - Design your own free( ) function +1 for the link to the IBM developer page. Awesome, article to compliment the question/answer. |
|
May 9 |
accepted | What is the purpose of returning a char* in strcat, strcopy, (etc), when there is a destination variable? |