Tagged Questions
0
votes
1answer
33 views
setExclusiveTouch ignored when using UISwipeGestureRecognizer
I have two UIViews (custom scroll views) that respond to UISwipeGestureRecognizer. These two UIViews are subviews of the parent UIView. I want to allow only one of the subviews to respond to the ...
1
vote
1answer
49 views
Customizing a UIActionSheet
I'm wondering how I might go about customizing a UIActionSheet like this one:
When you press on the button to bring this view up, it does come up like a UIActionSheet but honestly I'm not quite sure ...
0
votes
4answers
57 views
Create new UI elements programmatically
I'd like to be able to create elements (like UIViews) when for example the user touches a button
NSMutableString *myVar = [NSMutableString stringWithFormat:@"_view%i", num];
UIView * newView = [self ...
1
vote
2answers
69 views
iOS - presenting a ViewController with presentViewController: doesn't work
In my iOS application I try to present new ViewController "above" current one. Following this Apple guideline, in some event I use the following code:
MyViewController* vc = [[MyViewController alloc] ...
1
vote
2answers
52 views
Having a single view visible in all tabs (UITabBarController)
How can I have a single view (UIButton) visible in all tabs of a UITabViewController?
For example I need to keep a single "info" button visible in all tabs, and not add it to XIBs of all tabs and not ...
0
votes
3answers
55 views
Transform not working
I am trying to rotate an object around it's current position,
CGAffineTransform trans = CGAffineTransformMakeRotation(compass_heading );
trans = CGAffineTransformTranslate(trans, 0, 90);
...
1
vote
1answer
106 views
How to create a dropdown tableview like Vine App
I'm wondering how one would go about programming the kind of dropdown tableview that the Vine app uses. If you have never used Vine, I've provided a picture below which depicts the UI Design I'm ...
2
votes
1answer
84 views
Adding UIView programmatically, but the other views resize and there's artefacting?
I'm building an app for iPad that involved adding UIViews programmatically. When the view is loading, I can add other UIViews just fine. However, after the UI's loaded, when I try to create a UIView ...
0
votes
1answer
42 views
How Can I Change UIImages in a ScrollView based on a User's Input
Okay gang, I'm scratching my head on how to accomplish this one so I wanted to put it out to the world at large.
Essentially what a client wants is a way to toggle PART of a view based on whether ...
0
votes
0answers
65 views
iPhone lost all UI transition animation
Currently I encounter an issue somehow, the application lost all those artistic UI animation for example, page flipping, alert view popup, action sheet slide up and etc. That means all those UI will ...
0
votes
0answers
47 views
Using the parse backend to populate a UI in Xcode
I am trying to pull data from my parse database backend service and populate fields into a UI (Using the latest version of Xcode and Parse framework). I have successfully done so with a table view ...
3
votes
1answer
40 views
Cappuccino - CPSplitView fixed subviews' size
I have a class GridNode inheriting from CPSplitView that is used to wrap objects of type GridELement. Each consecutive split of a GridNode divides it into two new GridNodes (containing GridElements ...
0
votes
3answers
57 views
Resizing views that were designed with constraints
I have an NSView xib, which contains a NSTextField and a custom NSView. I've used constraints so that when the parent view resizes, so do the children. So far so good. During a command, the user can ...
0
votes
1answer
40 views
UIButton not calling selector
I'm creating a UIButton programmatically, but when I tap the button it does not call the selector at all. The button is created in the following method:
- (UIButton*) createNewsButtonFromItem: ...
0
votes
2answers
85 views
Cocoa performClick on button waiting for next external event
I have NSAlert instance which i run as modal for user confirmation on cancelling some operation. When user doesn't respond and the operations gets completed , i need to close this modal window. So, ...