UIView is an iOS class which is used to display all user interface elements. All UI elements are either subclasses of UIView or are contained within a UIView.
0
votes
2answers
33 views
UILabel Animations and Gestures
I am trying to achieve an effect in an application I am writing and maybe you can help.
The view hierarchy is reasonably complicated at this point so for simplicity let’s just say I have a UILabel ...
0
votes
3answers
43 views
How to add a UIView over the Keyboard - iOS
I have been trying to display a toast message on iOS. What I did was when any notification comes, just I took the navigation controller view and added a subview for my toast message and displayed.
...
0
votes
1answer
34 views
Program crashing after adding subview from NSMutableArray
Right now I have a UIView with two subviews on it. I am trying to add another subview to one of those views, from a custom-made Card class. The problem is that the subview is coming from an ...
0
votes
0answers
8 views
Animate intrinsicContentSize changes
I have a UIView subclass that draws a circle whose radius changes (with nice bouncy animations). The view is deciding the size of the circle.
I want this UIView subclass to change its frame size to ...
0
votes
0answers
9 views
Add animatable property to UIView
I've got an view which shows an scrollable temperature scale. There I used a property contentOffset to save the translation. (I know I should have used a UIScrollView but now I've got more control ...
0
votes
2answers
55 views
Trying to find the name of this “slidable UIView”?
Anyone know what the control is called to achieve the functionality shown here in the iOS Stocks app?
I've been searching Google for things like 'Slidable UIView' but can't find anything!
1
vote
2answers
65 views
Static View For Every View Controller in iOS
I am creating view controller with a view. The view is named as timerView and it contains a timerLabel. Label is being updated by NSTimer after every second. Its working fine.
But what I want to do ...
0
votes
0answers
16 views
What is the best way to use layers and partial rendering in iOS for speed
I'm working on a graphing application which I wrote using Core Graphics. I have a buffer which accumulates data, and I render it on the screen. It's super slow and I want to avoid going to openGL if ...
0
votes
2answers
21 views
button of a dynamically created view does not respond
I need your help. I am trying to build a game. When a hint button is pressed a new view is created programmatically with the code below:
In my gameController.m
//connect the Hint button
...
0
votes
0answers
6 views
Refresh UIView data
I have a custom UIView called CustomViewC that I need to refresh the data that it's displaying some times.
For instance I may init the view to show "Hello" then at a later stage I want the view to ...
2
votes
0answers
126 views
Changing Frame Programmatically iOS 7? [closed]
So I have an app that is in the App Store and I you type in some UITextFields but some of the text fields were covered by the keyboard so I programmatically moved them up. Now I am working with the ...
-2
votes
0answers
36 views
create a custom view on top of my current view iOS [closed]
I am facing some difficulties. I do not have that experience and in all of my apps so far I was working with storyboards. I am now trying to create a game, and in a tutorial I follow every view is ...
0
votes
0answers
33 views
Main UIView is changing sizes after adding a container view
I have added a container view to my main view if someone pushes a certain button, then if they push the button again it removes the container view. The issue is my screen size seems to change when ...
0
votes
1answer
15 views
How to not to rotate a certain UIView allowing UIViewController's rotation
Does anyone know fix(not to rotate) a certain UIView with allowing rotation of UIViewController?
I want to implement a interface like camera app UI. A view showing camera's view does not rotate but ...
2
votes
1answer
87 views
Vertical Parallax Scrolling Of UIView in iOS
I'm trying to add a vertical parallax scrolling effect between several views that are all the size of the screen.
This wasn't too complicated when done through buttons, however I want it to be ...