Tagged Questions
0
votes
2answers
23 views
Passing data to ViewController from a custom view
My single view application on XCode has a custom view that is about half the size of the full iPhone screen. I have implemented a drawing tool that is only useable inside of the custom view. The ...
0
votes
2answers
47 views
How to load UIView from UIViewcontroller?
I have created a view and now I want to load that view from another viewcontroller without allocating the view. Is it possible or not. please clarify me.
I am doing like following
1)Added UIView in ...
1
vote
2answers
67 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
1answer
23 views
UIImageView and Auto Layout in Code
I'm trying to use programmatic visual constraints to display a label and a button next to one another. However, the UIImageView used as the button's background is making the intrinsic size of the ...
0
votes
3answers
48 views
why self.view.frame and self.view.bounds are different when the devices rotate?
I want to do some layout change when the devices rotate. So I implement - (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation ...
0
votes
1answer
60 views
NSArrayM insertObject:atIndex:]: object cannot be nil'
After a lot of search, and tries with some solutions on stackoverflow, i didn't find any answer which could solve my error :
I have a UIViewcontroller, who's name is WorldViewController. In this ...
0
votes
0answers
11 views
Returning to view after logging in to Facebook, screen unresponsive
I am using PKRevealController (https://github.com/pkluz/PKRevealController) for a sidebar menu (similar to the Facebook app). Everything is behaving well, but when I logout via my settings page, and ...
0
votes
2answers
40 views
UIViewController Present
I am trying to present a UIViewController with a UIView on it.
The following is the code I am trying in my viewDidLoad method.
//create the view controller
UIViewController *controller = ...
0
votes
2answers
59 views
List of all available Cocoa Touch views and controllers
I just finished going through a few books on iOS developing and starting my first app. I was wondering if anyone knew of a cheat sheet (or just a list) that shows the various views (e.g., table view, ...
0
votes
1answer
28 views
Send from UIView class information to UIViewController
I have controller
#import <UIKit/UIKit.h>
#import "ViewBoard.h"
@interface BallsViewController : UIViewController
@property (weak, nonatomic) IBOutlet UILabel *InfoLabel;
@property (weak, ...
0
votes
1answer
21 views
Where can you specify a view's frame/location for specific orientations on iOS?
In an iPad app have a UITextView as a subview of UINavigationController that is set to take up a majority of the screen in portrait orientation. When the iPad is rotated to landscape, I would like the ...
0
votes
1answer
25 views
Adding Coreplot Graph UIViewController to another UIViewController's view
So I am having an issue with Coreplot.
I am currently attempting to add my Coreplot graph that i implemented within one of my UIViewController's subviews.
I implemented the Coreplot graph in a ...
0
votes
1answer
31 views
Bottom tool bar is missing when i open the app?
When i load the app my bottom tool bar is missing but when i move the toolbar to the center of the screen it showing .My view frame is default 0,0,320,480 .Then why bottom toolbar not appearing ?
...
-1
votes
2answers
59 views
Load UIView from UIViewContoller
My Improve Code.....
I write the following code in ViewController.m viewDidLoad(). It already called my loadAnimate function.
self.classAnimate = [[animateClass alloc] initWithFrame:CGRectMake(0, ...
1
vote
3answers
42 views
Change UIView (inside nib) background from other viewcontroller
Anyone know how to alter a view inside a nib from another viewcontroller? I have a outlet from the view in nib-file to the view class-file and I have @synthesize the view-class .m file. And then I ...
0
votes
1answer
33 views
getting a subview's WINDOW coordinates issue with convertRect
from main viewController's ViewDidAppear
UIView* parent = [[UIView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
UIView* child1 = [[UIView alloc] initWithFrame:CGRectMake(30, 30, 60, 60)];
...
0
votes
1answer
46 views
viewcontroller is not switching to landscape mode after putting it in the front screen
This is my first ios project which is ipad specific. In this project I have two view controllers in which I have made my custom drawing using the drawRect method.
Each view of the UIViewController ...
0
votes
1answer
26 views
SearchDisplayController table not showing in custom UIView
I have an UIViewController. Inside the view controller there is a custom UIView class object added as subview. Now, inside the custom UIView class, I have a search display controller. When I do this
...
0
votes
1answer
22 views
Setting up a UIImageView subclass between loading from a NIB and willMoveToSuperview:
I have a UIImageView subclass (AdImageView) placed in my view controller's NIB. This AdImageView knows how to go off and load a remote image into itself using some asynchronous calls invoked from ...
0
votes
4answers
69 views
I have a UIView presented in a view controller, how do I detect when the user tapped outside of this view?
I have a UIView in a view controller with a bunch of subviews (mostly UIButtons) on it, and when the user taps outside of the UIView I want it to be detected so I can run some code. This UIView is a ...
0
votes
2answers
65 views
View being cut off (landscape vs. portrait orientation)
I have had this problem countless times and cannot figure out how to fix it. I am working in an Xcode project (empty project - NO XIB's!). I have my orientation set to landscape:
But this keeps ...
1
vote
2answers
70 views
Crashing while assigning nil to UIViewController after removing view and popping
I have a sequence in which I need to pop a UIViewcontroller from outside the class. From the server I will get an log out event, and I need to pop the view controller if it is open. So I have done ...
0
votes
2answers
30 views
Subview not loading, but not crashing
So I've been struggling all day, trying to get a subview to show up on my app. I'm not getting any errors or crashes, but the subview just isn't showing up.
code that calls the subview from the main ...
0
votes
1answer
44 views
UIViewController pass float value to UIView method
I have a ViewController with a HandlePan method:
-(void)handlePan:(UIPanGestureRecognizer *)gestureRecognizer
{
UIView *piece = [gestureRecognizer view];
[self ...
0
votes
1answer
19 views
How save properties of the UIButton
I have two ViewControllers. I insert one UIButton with IBAction on the first ViewController. When i push on the button with set name "PLAY" after pushed i can see "STOP" - it's work great. But when ...
0
votes
1answer
58 views
How make UiView displayed on top? [closed]
I have two UiViewControllers. I need to be UIView with UiButton and UISlider displayed on top.
Also i already read any topics about this...but it's not work.
0
votes
1answer
74 views
iOS presentViewController is not working right
As part of my updating my apps to replace the deprecated presentModalViewController with presentViewController, I did some testing.
What I found was disturbing. Whereas presentModalViewController ...
0
votes
0answers
16 views
How to add UIView above UIViewController in UIViewController?
I have an CustomViewController and that ViewController has UIView and UIViewController inside. How do i arrange the UIView above the UIViewController position in CustomViewController? is there any way ...
0
votes
1answer
43 views
Move view from UITableViewCell to Window and back to same cell
I'm creating an SDK where I have a view that performs various tasks such as expanding and flipping to not go into much detail.
In one possible use case, the user may place the view in a ...
0
votes
1answer
81 views
Object became nil after view will appear
Following situation:
I got 2 views. On the firstview I m display Event data, on the seconde i can edit these data. If I switch to my seconde view and edit a value and return back to my firstview ...
0
votes
2answers
75 views
Creating an editable Table View in iOS?
I am trying to create an editable table view in iOS using .xib files.
My code looks like this :
viewController.h
#import <UIKit/UIKit.h>
@interface ViewController : UITableViewController
...
0
votes
2answers
44 views
Manage uiview and uiviewcontroller
I created an uiview , that contained , many textfields , and I have an uiviewcontroller with xib file responsible for making signature .Is it possible to add this viewcontroller to my uiview in order ...
1
vote
2answers
47 views
Which event is called after the view is shown
I have created a small app with a storyboard.
Now, I have created a first view, which should be my splash. I am now searching for the right place to put my work into it. After this work, I would ...
1
vote
0answers
63 views
Weird behavior of child view controller's view frame on iphone5
What I'm trying to do is create a view controller, and have its view animate in from the right. The main view controller has a view called viewContainer that will house this view. The weird thing is ...
-4
votes
5answers
77 views
How do i get the size of a UIView from within the View Controller? [closed]
Inside the viewDidLoad method of a UIViewController:
NSLog(@"frame: %f %f", self.view.frame.size.width, self.view.frame.size.height);
With the device in landscape:
frame: 748.000000 1024.000000
...
0
votes
1answer
139 views
Resizing full screen view inside UIViewController on rotation?
I added a webview to a UIViewController. I assumed that I could match it's size to the UIViewController's view, but soon realised that the UIControllerView frame was independent of the screen ...
0
votes
1answer
45 views
how to convert UIView code into UIViewController with Nib in ipad
I have found tutorial which I want to implement in my view controller but the code is written in UIView so how to convert UIView code into UIViewController it can work here is my code
#import ...
-2
votes
2answers
60 views
Applications are expected to have a root view controller at the end of application launch error [duplicate]
I have a problem,
I am using following code the application work fine.
Support *panoView=[[Support alloc] initWithFrame:CGRectMake(0, 0, 768, 1024)];
self.view=panoView;
Note: panoView is ...
0
votes
1answer
29 views
Push a new view on button tap
Can't seem to figure this out. I'm attempting to load a UIView (preferably sliding in from the right) on button tap but it isn't changing after the first page.
I click the register button on the ...
0
votes
1answer
52 views
UIView get error: Expected unqualified-id before '=' token
I declare a UIView in interface:
@property(nonatomic, retain) UIView *textView;
Then synthesize it in implementation
@synthesize textView;
Then call UIView in one of the function:
textView = ...
0
votes
1answer
152 views
How to call UIView method from another ViewController in iOS
I have implemented freehand sketch tutorial from
http://mobile.tutsplus.com/tutorials/iphone/ios-sdk_freehand-drawing/.
I need to call its - (void)drawBitmap; - (void)drawBitmapGreen; methods in ...
0
votes
1answer
30 views
Error on creating a KVO on a UIView
I am adding a UIView called bookViewContainer to my view controller, and I want to detect when its scale changes using KVO. Here is my viewDidLoad:
- (void)viewDidLoad
{
[super viewDidLoad];
...
0
votes
0answers
94 views
Add UITapGestureRecognizer to UIScrollView
UPDATE
I am creating a UIScrollView in my ViewController. In a Drawing.m class I draw a shape onto the UIScrollView with drawRect. I want the shape that I am drawing onto the ScrollView to be ...
1
vote
1answer
80 views
iPhone startup orientation (again!)
EIDT: fixed. It looks like it was a Simulator issue.
Thanks to Gabriel
One the simulator I get only this:
--- UIDeviceOrientationDidChangeNotification -> [<UIDevice: 0x7577d30>] {
But on ...
0
votes
0answers
60 views
DrawRect not displaying shape?
I am currently trying to implement two subclasses at one time.
I am using the UIViewController <CLLocationManagerDelegate> subclass in my viewController to be able to work with the gps. While ...
0
votes
4answers
61 views
iOS/iPhone - passing custom object between views. Object returns always null
I'm trying to pass a custom class between views. I have set a property for that class but when i access the property, the attributes return always null:
firstview.m:
- (void)initNextEventView{
...
0
votes
2answers
72 views
setFrame won't do anything
I have a problem with an app that won't set frames outside -init and -viewWillLayoutSubviews methods. What should happen when one taps the editButton is an animation that will hide the editor view. ...
-6
votes
2answers
278 views
Multiple UITableview in Single Viewcontroller
I have a view controller in that i want to show 3 tableviews(because the content and the table properties are different ) .How do i add these delegate methodes for 3 tables in one view controller??
...
0
votes
1answer
188 views
viewDidLoad for UIView?
What is the viewDidLoad for UIView?
I have a UIView with xib. I would like to hide one of it's subviews when it is loaded.
I tried to use this.
- (id)initWithCoder:(NSCoder *)aDecoder{
....
...
0
votes
0answers
5 views
How to tell the size of a view (if it's the view controllers view)?
Suppose I have a method:
(void) addALargeWebViewToView:(UIView *) aView
that adds a webview 5 units smaller than the "aView" to the "aView".
The problem is that when
aView is the view of a view ...




