0
votes
1answer
255 views
How can I recognize a tap on a UIImageView-subclass inside a UIScrollView?
I tried it with this code in my UIScrollView-subclass:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
NSLog(@"he/she touched me");
}
I also made sure that in the …
0
votes
0answers
28 views
Detecting Swipe In UINavigationBar
I am trying to get my view controller to detect swipes in the UINavigationBar that is automatically displayed by my app, but it refuses to detect swipes. Is there any way I can do it?
2
votes
5answers
218 views
iPhone Memory Leaks in Apple’s Code
I'm running leaks through Instruments on my iPhone app and I'm seeing a lot of leaks that don't appear to be coming from my code.
For example:
NSURLConnection *connection = [[NSURLConnection alloc] …
1
vote
4answers
235 views
Is it possible to disable floating headers in UITableView with UITableViewStylePlain?
Hi, I'm using a UITableView to layout content 'pages'. I'm using the headers of the table view to layout certain images etc. and I'd prefer it if they didn't float but stayed static as they do when …
1
vote
4answers
175 views
Custom animation for pushing a UIViewController
Hi,
I want to show a custom animation when pushing a view controller: I would like to achieve something like an "expand" animation, that means the new view expands from a given rectangle, lets say …
37
votes
7answers
3k views
UIImagePickerController, UIImage, Memory and More!
I've noticed that there are many questions about how to handle UIImage objects, especially in conjunction with UIImagePickerController and then displaying it in a view (usually a UIImageView). Here is …
0
votes
2answers
184 views
UINavigationController inside a UITabBarController inside a UINavigationController
My problem is that I want to have a tab bar view with its children view controllers shown first. In the children view controllers, depending on what controls are clicked, I either want to A) drill …
0
votes
0answers
7 views
mask text inside uitextview/uiwebview
Hi folks,
finally I choose to devote some time to find a way/implementation to
mask text inside UITextView/UIWebView.
By now what I'm able to do is:
- add some custom background
- add a …
1
vote
3answers
642 views
UIKit SDK 3.0 error
Hi
I am using iphone_sdk_3.0_beta_5__9m2735 SDK.
When I try to compile my code using simulator 3.0 option I get following error. The code compiles for rest all simulator option ie 2.0, 2.1, 2.2, …
0
votes
1answer
23 views
UIView getting disabled
I have a UIView that's starting about 600 pt's off the screen, but when it comes on to the actual frame, it seems to be disabled.
I've tried using a UIScrollView, but also can't because I need to …
0
votes
1answer
64 views
UIPageControl dot for a search page
Hello, there!
Is there any way to add a magnification glass icon instead of the dot for my first page, that allows to perform some search, using the UIPageControl for my native application on the …
1
vote
6answers
2k views
how to change background color of UIAlertView ?
I want to give background color to my AlertView
0
votes
1answer
97 views
How can I iterate over image resources inside one group?
In my "Groups & Files" I have created something like that:
images > gui
images > foo
images > foo > bar
now I want to iterate over all images that are placed in images > foo > bar. Is that …
1
vote
2answers
416 views
Are there any good examples for how to use the accelerometers in iPhone OS?
I think that there are some issues with the earth Gravity, so I wonder if there are any examples where the accelerometers work by subtracting these.
0
votes
1answer
153 views
How can I set the paging behavior of an UIScrollView with pagingEnabled=YES?
The documentation says:
If the value of the property is YES,
the scroll view stops on multiples of
the view bounds when the user scrolls.
The default value is NO.
well it's really nice …
