Hi Everyone:
I am attempting to make a UIView/UIControl that people can drag up and reveal a text box, and then drag down to hide it. However, I have yet to find a method to make this "fluid" - it always seems to stop at random places and doesn't allow any more movement. At the moment I am using a UIView for the top part of the view a...
Hello people,
i have implemented the following viewDidLoad() Method:
- (void)viewDidLoad {
[super viewDidLoad];
// loading images into the queue
loadImagesOperationQueue = [[NSOperationQueue alloc] init];
AFOpenFlowView *openFlow = self.view;
theControl = [[UIControl alloc] initWithFrame:self.view.frame];
NSStr...
Hi there,
After experimenting with a bunch of javascript tabbars (most fail when using forms), i've decided it might be a good idea to go native.
Would anyone know how to incorporate native UIControls (tabbar & header) in a jqTouch app. I'd still need to retain control of the 'back' and 'info' buttons in the header.
Thanks!
Glen
...
Hi! I've a custom UIImageView and I need to implement UIControl methods (like touchupinside)
but I don't know how to do this. Here is my custom UIImage
#import "IngredientImage.h"
@implementation IngredientImage
@synthesize startLocation, initialFrame;
- (void)touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event { // Retrieve the t...
I've subclasses UIControl and in it I am sending:
[self sendActionsForControlEvents:UIControlEventValueChanged];
When I create an instance of the object, I add a target as follows:
[starView addTarget:self action:@selector(starRatingChanged:) forControlEvents:UIControlEventValueChanged];
The view shows up fine, and without the targ...
Hi guys,
I've developed a jQTouch app ( http://bit.ly/9uE1i0 ), with iScroll
integration ( http://bit.ly/9KsKz3 ), using the native tabbar (
http://bit.ly/ag3H6b ).
All works great in PhoneGap except that iScroll sticks when the swipe
motion goes over the uicontrols tabbar. See video: http://screenr.com/AcD
Is there a way to inc...