| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 1 month |
| seen | 2 hours ago | |
| stats | profile views | 39 |
I'm a web developer and also iOS programmer
|
Feb 28 |
comment |
Xcode 4.6 builds, runs and finishes instantly (simulator iOS 6.1) I had this problem. Solved it with removing XCode and reinstalling it from scratch. |
|
Feb 27 |
comment |
NSDateFormatter Problems You have to set the dateFormat df.dateFormat = @"MM-dd-yyyy" |
|
Feb 27 |
comment |
Passing a running float to another class In this line @interface ClassA : UIViewController <ClassBDelegate> |
|
Feb 27 |
revised |
Passing a running float to another class added 61 characters in body |
|
Feb 27 |
comment |
Passing a running float to another class Did you set delegate in ClassA header? |
|
Feb 27 |
revised |
Passing a running float to another class deleted 13 characters in body |
|
Feb 27 |
comment |
Passing a running float to another class In your case you shouldn't pass the variable. You have to use the same variable of class A in class B via delegate |
|
Feb 27 |
comment |
Passing a running float to another class See the edited answer |
|
Feb 27 |
revised |
Passing a running float to another class added 717 characters in body |
|
Feb 27 |
comment |
Passing a running float to another class Pleeease avoid globals. |
|
Feb 27 |
answered | Passing a running float to another class |
|
Feb 27 |
comment |
Adding an image over UIButton? What is original button image? |
|
Feb 27 |
comment |
Adding an image over UIButton? The button.imageView will cover the button.backgroundColor, so you'll need to set default image as the background and the additional that you want to show and hide, as button.imageView. |
|
Feb 27 |
comment |
Adding an image over UIButton? Your handler is not optimal.. There is no need again to set image for selected state.Only change the button state - selected | not selected. |
|
Feb 27 |
comment |
Adding an image over UIButton? Highlight should be preserved for "TouchDown" event. It's a bad practice to do hacks on it. |
|
Feb 27 |
revised |
Adding an image over UIButton? Changed my answer |
|
Feb 27 |
comment |
Adding an image over UIButton? My answer is just an example to @Vinzzz answer |
|
Feb 27 |
revised |
Adding an image over UIButton? added 3 characters in body |
|
Feb 27 |
answered | Adding an image over UIButton? |
|
Feb 26 |
comment |
Adding color to text in TextView Good code.. only change the label to textView :) |