|
1d |
comment |
Optimize UIBezierPath drawing Are you drawing a path containing a single curve segment (two endpoints and one or two control points)? Or are you drawing a path containing many curve segments? |
|
May 16 |
comment |
Is it OK to return from the middle of a function in C++? Would better have been closed as a dup of stackoverflow.com/questions/36707/… |
|
May 16 |
comment |
scrollview is showing only the last added subview Run your app. After it displays your scroll view on the screen (incorrectly, with only one subview visible), pause in the debugger. Run this command in the debug console: po [[UIApp keyWindow] recursiveDescription] Copy the output and paste it into your question. |
|
May 16 |
awarded | Enlightened |
|
May 16 |
awarded | Nice Answer |
|
May 15 |
comment |
iOS objective-C: objects composed of other objects You simply need to work through some tutorials to learn the basics of the iOS toolkit. You will not be able to build your own app until you have done so. |
|
May 15 |
awarded | Enlightened |
|
May 15 |
awarded | Nice Answer |
|
May 14 |
revised |
Calculate the sum of numbers between 1 and 100 that end in 5 edited tags |
|
May 14 |
answered | In Objective-c how do I ensure that one code is called after another code? |
|
May 11 |
comment |
Split screen Interface (like Facebook, linked in etc) possible duplicate of Facebook style sliding bar for iOS app |
|
May 11 |
comment |
how to display various view controllers (each having its respective navigation controller) using storyboard ID Perhaps you could make the root view controller be a UITabBarController and just hide the tab bar. There are several questions/answers on stackoverflow discussing how to hide the tab bar. Just search for uitabbarcontroller hide tab bar or uitabbarcontroller hide tabbar. |
|
May 11 |
revised |
how to display various view controllers (each having its respective navigation controller) using storyboard ID added 4 characters in body |
|
May 11 |
awarded | Enlightened |
|
May 11 |
awarded | Nice Answer |
|
May 9 |
comment |
Why is this returning an extra none? It's not a problem on their end. It's normal, expected behavior that you happen to not understand yet. There is a difference between what a function prints and what a function returns. See @abarnert's answer. |
|
May 9 |
comment |
Mulithreading: executing method calls only after finished executing other method There's basically no way to do what you're asking unless the 3rd party library provides some way to detect when that private block finishes executing. Does it? |
|
May 9 |
comment |
Mulithreading: executing method calls only after finished executing other method This won't work, because firstMethod dispatches a block to a global concurrent queue, and dispatch_barrier_async is documented not to act like a barrier on the global concurrent queues. |
|
May 9 |
answered | iPhone iOS how to draw text on a CALayer using drawLayer:inContext:? |
|
May 9 |
awarded | Nice Answer |