| bio | website | about.me/kovacevic |
|---|---|---|
| location | Croatia | |
| age | ||
| visits | member for | 7 months |
| seen | 2 days ago | |
| stats | profile views | 39 |
|
Apr 30 |
revised |
How to enlarge dynamically an UILabel (label and font size)? corrected the code to respect existing font that was already set on UILabel instance... |
|
Apr 29 |
revised |
How to enlarge dynamically an UILabel (label and font size)? added 18 characters in body |
|
Apr 29 |
revised |
How to enlarge dynamically an UILabel (label and font size)? added 1 characters in body |
|
Apr 29 |
revised |
How to enlarge dynamically an UILabel (label and font size)? added 1 characters in body |
|
Apr 29 |
revised |
How to enlarge dynamically an UILabel (label and font size)? improved the answer so that it works for both cases upsize and downsize... |
|
Apr 29 |
answered | How to enlarge dynamically an UILabel (label and font size)? |
|
Apr 28 |
accepted | Is it possible to customize swiping gesture recognition that triggers UIScrollView scroll? |
|
Apr 25 |
revised |
Is it possible to customize swiping gesture recognition that triggers UIScrollView scroll? added 2 characters in body |
|
Apr 25 |
revised |
Is it possible to customize swiping gesture recognition that triggers UIScrollView scroll? added 10 characters in body |
|
Apr 25 |
revised |
Is it possible to customize swiping gesture recognition that triggers UIScrollView scroll? edited body |
|
Apr 25 |
answered | Is it possible to customize swiping gesture recognition that triggers UIScrollView scroll? |
|
Apr 25 |
comment |
Is it possible to customize swiping gesture recognition that triggers UIScrollView scroll? Good point! I've just tried the Facebook app and that's seems to be that .. if you swipe left or right, the news feed(presumably a UIScrollView) slides to the side... I'm going to try your suggestion now. However I must note that I'm actually not trying to open side menus but actually change the value of an NSInteger variable (increase/decrease) with regard to horizontal swiping or dragging... |
|
Apr 25 |
asked | Is it possible to customize swiping gesture recognition that triggers UIScrollView scroll? |
|
Mar 28 |
revised |
Translate uiview in direction of touch moved, iphone Much better solution. I wrote the previous one from the top of my head and it was actually not correct... |
|
Mar 28 |
answered | Translate uiview in direction of touch moved, iphone |
|
Mar 24 |
awarded | Enthusiast |
|
Mar 23 |
comment |
Get a reference of an animation created by UIView's animateWithDuration or identify it by any other means So you would rather do something like this: CGFloat animDuration = [(UIViewController<mySpecialProtocol>*)[self viewController] animationInProgressDuration]; instead of CGFloat animDuration = [self.delegate animationInProgressDuration]; ... or even just using self.delegate.animationInProgressDuration in place where needed |
|
Mar 23 |
comment |
Get a reference of an animation created by UIView's animateWithDuration or identify it by any other means Probably like this: stackoverflow.com/a/2596519/1725693 ? But than you still have to cast that reference you get, into one which conforms to your protocol or your exact custom UIViewController type, to avoid compiler warnings when you try to call methods on it which you implemented? Which is why I see the delegate property as a cleaner solution? Is there maybe any downside I'm missing, when implementing a delegate property? |
|
Mar 23 |
comment |
Get a reference of an animation created by UIView's animateWithDuration or identify it by any other means Well I actually did. I was under impression that was bad practice(walking the responder chain)? That it breaks the MVC pattern etc, etc.. "view shouldn't know about its view controller...". Regardless isn't actually creating the delegate property a cleaner solution(less code)? You made it sound like it is a bad thing to do, so now you got me thinking... |
|
Mar 23 |
comment |
Get a reference of an animation created by UIView's animateWithDuration or identify it by any other means Btw, despite all those cool features of CATransaction I eventually ended up declaring a delegate property in my views and a protocol containing methods and properties so that views can "query" their view controller(delegate) about the status of ongoing animations. I then set the necessary information in the beginning of animations block and change/remove it in the completion block. I think this solution is also much easier to follow(understand) when you browse through the code. So that is basically what you have suggested as a flag-solution in the first place... |