The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
25 views

Image on top of UIlabel?

I'm trying to add title3 above the picture and into the black box on the left side. Such as this I'm not sure why it's not working but any help would be greatly appreciated. I'm pretty new to ...
0
votes
1answer
16 views

Change the order on element

I'm now doing an application, where i need to put some elements in the top of the views sometimes. For example, how could i do to make the entire CGRect red and not the green visible here : Could ...
1
vote
1answer
38 views

Add a child view controller's view to a subview of the parent view controller

I want to add a tableViewController as a child view controller of a containerViewController (shown below). According to Apple's View Controller Programming Guide I can achieve this by the following ...
0
votes
0answers
8 views

Subview for Phonelist

I need help for add an subview for my phonelist with Password http://www.apfeltalk.de/forum/attachments/98547d1370565935-iphone-app-entwickeln-bildschirmfoto-2013-06 (IBAction)enterPassword { ...
0
votes
0answers
10 views

strange behavior of adding a subview to a UIView

I'm using apple's sample tableSearch. http://developer.apple.com/library/ios/#samplecode/TableSearch/ I wanted to search the table only when I enter more than 2 character. so meanwhile I want 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
21 views

Having trouble passing NSString from plist to ImageView

I'm currently using a plist to populate my table view rows(i.e. Name, Description and Image). When the user selects a row, a new controller is pushed up with an imageView presenting the rows image in ...
0
votes
2answers
53 views

Adding subview center of screen

I am trying to add a small icon in the center of my iPhone app screen. Below is the code I think should work, but it isn't centering it. The position regarding the width is fine, but the height is ...
2
votes
2answers
92 views

iOS who is file owner of subview?

I am newbie in iOS development and I have a problem to understand file owner logic. I have this situations: I have two views (View_iPad, View_iPhone) and their controllers (ViewController_iPad, ...
0
votes
1answer
60 views

App crash on addsubview when enable ARC

When I used tradition function [self.navigationController pushViewController:viewcontroller animated:YES]; or [self presentModalViewController:viewcontroller animated:YES];, Everything is ...
-1
votes
2answers
41 views

How to create a new textView every time when clicking on the same button?

I would like to create a new uitextview every time when the user click on the same uibutton. I've tried to write some codes but I can create one uitextview only. Would be glad if there's some sample ...
0
votes
1answer
58 views

about UIView addSubview

I have two UIViews, named A and B, and I add UIView B into A's subviews: [A.view addSubview B] I am wondering is there any delegation or hook that B can be informed "Oh, I was added into A!" when ...
1
vote
1answer
76 views

TouchesBegan not triggered in UIView as subview of UITableViewCell

I'm creating a custom dropdown menu inside a cell of a UITableView adding this menu as a subview of the cell content view. When I click on the menu inside the cell I enlarge the view to show all the ...
0
votes
1answer
37 views

ViewController added as a subView getting released too soon

I am trying to optimize the code in my app. I have quite a few ViewControllers which all use a common "keypad". I wanted to extract the keypad into a separate ViewController and then include it into ...
2
votes
1answer
49 views

Adding a UIView's to the Subview which is already added to the MainView

The structure is like this,.. *) MainView 1) viewLocations(UIVIEW) // this one is adding fine a) viewBangalore b) viewHyderbad Actually I'm doing a iPad App , in ...
0
votes
1answer
33 views

Animate without lag?

I am currently using the following code to animate the transition between a view, and when the refreshTheServers method is called while doing so, the whole application freezes, refreshes the servers, ...
0
votes
6answers
94 views

Click on UIButton Does Not Work if it's Added as Subview to UIImageView

I have a simple UIImageView that is animated, and i need to detect a tap on it. I've added a UIButton that is a subview of this UIImageView. However,the tap on it does not work. I've already tested ...
0
votes
1answer
48 views

how to animate a view containing a subview

i'm still a beginner in xcode. here is my problem.. i have a scrollview made programitaically in which there is a uilabel made inside it programmically. i have placed the ssrollview in the edge of the ...
0
votes
1answer
86 views

addSubview crashes iOS 5.1 but not 6.1

The following works fine in 6.1 but the app crashes in 5.1... weeklyHeaderViewController =[[WeeklyHeaderViewController alloc] init]; [self.view addSubview:weeklyHeaderViewController.view]; This is ...
0
votes
1answer
33 views

Getting the Tag Number of Touched Object

I have a button. Every time the user clicks on it, the application will instantiate the UIImageView (imageview), assigning a unique number to its tag. - (IBAction)buttonClicked:(id)sender { ...
0
votes
1answer
74 views

addSubview of composite views not working

I have a UIView which is composed of two subviews- @interface ANImageLabel : UIView @property (strong, nonatomic) UIImageView *imageView; @property (strong, nonatomic) UILabel *label; - ...
0
votes
2answers
42 views

Error in UIButton's IBAction

I would like to show UIViewController MyViewController by tapping at UICollectionViewCell and then close it. So, in my didSelectItemAtIndexPath: CGRect myFrame = CGRectMake(0, 0, ...
0
votes
0answers
101 views

Add UIViewControllers View as a subView of another UIViewController view

I have a UiView called TestView which I have added as a subView of my NumberViewController. On start of my app, My rootViewController is PaperViewController, this has some UIButtons which I have ...
0
votes
0answers
72 views

Apply autoresizemask after addSubview when tiling subviews

I have a view that subclasses UIScrollView. It displays many subviews--too many to perform smoothly if all the subviews are added to the scroll view. So, as suggested in the documentation, I only add ...
0
votes
3answers
221 views

IOS - Getting Xib frame size

In myViewController.m I'm trying to add as subview a custom UIView called AlbumView : -(void)viewDidLoad { AlbumView *album = [[AlbumView alloc]init]; [self.view addSubView:album]; ...
1
vote
1answer
90 views

addSubview not calling QLPreviewControllerDataSource instances when offline

I have the following piece of code to add a QLPreviewController subview { QLPreviewController *preview = [[QLPreviewController alloc] init]; preview.delegate = self; preview.dataSource = ...
0
votes
3answers
425 views

How to Auto Layout with existing Custom View with multiple subviews in iOS 6

I am trying to make the Layout using constraints, but I have many custom controls with internal nested Subviews. And I am adding the constraints to the top view (CustomView) but its not lay-outing the ...
0
votes
1answer
51 views

remove view from supper view ios

i have a question about remove a subview from the supper view: now i have a subview named : subview1 and then i add this subview in 2 other views: [supperview1 addSubview: subview1] and ...
0
votes
2answers
61 views

addSubView not working, attempting to switch views

// ViewController.m 1: - (IBAction)doNE:(id)sender { 2: 3: [self.view removeFromSuperview]; 4: [self.view addSubView:MasterViewController]; 4: } Error on line 4: "Unexpected interface name ...
-1
votes
1answer
228 views

adding text field in table view on button click

I have a table view and in each row there is a add button on click the new row adding below i want that onclick the row has one text field in it and a user can enter a texh on it can you help me how ...
0
votes
2answers
67 views

How to add/remove a sub view from a table view

I have a UITableView in which I want to let user to click on the cell and use a sub view to display the detail information. I have tried this method: - (void)tableView:(UITableView *)tableView ...
1
vote
2answers
118 views

UIScrollView subview not always clickable

I'm adding subviews to an UIScrollView. For this question I'm simplifying the added view : testView it contains an UIButton My Scroll View is working great, but the touch on the buttons is not ...
0
votes
1answer
41 views

Is it correct to have subViews in the same ViewController?

So, this is my question. I have a ViewController, and I want to add 2 different Views in different position (one upper and the other lower) but they will appear at the same time, using method ...
1
vote
0answers
78 views

Use Navigation View Controller for navigation between Subviews

I have a MainViewController which cover's whole screen on iPad and i have three subviews each having frame = (0,0,1024,150) The required config of subviews and segue between them is being done in ...
0
votes
1answer
65 views

Memory Leak Troubleshooting for addSubview

What is the proper way to prevent memory leaks when using addSubview? I am getting complaints from Instruments that there is a leak in this code. What am I doing wrong? Example Code: my.h ...
0
votes
1answer
77 views

Subviews are not removing while removing the superview in iPad

I created a UIView.A search bar is added as subview on the view.The search bar is also created through code. I have given a UIAnimation to the view to get a dropdown like effect to the view. Upto ...
0
votes
1answer
247 views

Programmatically adding a subview to a pre-defined subview in storyboard not working

I have a ViewController in a storyboard consisting of two UIViews and a table at the bottom. the center of the screen contains a UIView defined in the storyboard with an outlet called ...
1
vote
2answers
194 views

Adding subviews to UITableViewCells causing issue while scrolling

I'm absolutely stumped on how to fix this issue. So I have a UITableView and in the delegate method cellForRowAtIndex: I'm adding several subviews to each cell if the cell is nil (the initial ...
0
votes
0answers
31 views

Button doesn't work on added SubView

I have this: -(void)viewDidAppear{ pantallaIntroductoria *primeraza =[[pantallaIntroductoria alloc] initWithNibName:nil bundle:nil]; [UIView transitionWithView:self.view ...
0
votes
0answers
39 views

Unwanted animations coming from nowhere

In my iOS app, I have some animations that seem to be coming out of nowhere. They don't happen at first, only after using the app a little. Here is a Youtube video with a better description: ...
0
votes
2answers
51 views

Scrolling TableView effects response time of SegmentControl

This may be a strange problem and I hope someone has had it before. I added a SegmentControl to my TableView using this code: UIView *headerView = [[UIView alloc] init ]; [headerView ...
-1
votes
3answers
51 views

Get actual dimensions of iOS view

How would I get the actual dimensions of a view or subview that I'm controlling? For example: UIView *firstView = [[UIView alloc] initWithFrame:CGRectMake(0,0,200,100)]; [self addSubview:firstView]; ...
1
vote
1answer
98 views

adding subview to main uiview in selector

I'm working on drag and drop app, when the user drop an image, I want to make copy from it in the drapped point, and then the original one returns to it initial point. I decided to add uiimageview to ...
0
votes
3answers
52 views

Why is my subview twice the size I want it to be?

I am adding a UIView to a UIScrollView. It will be a horizontal scrollview and I want to add multiple views to it. The code showing is for one scrollview just to make it simple. The scroll view is ...
0
votes
3answers
389 views

UIView addSubview nor working in UITableViewCell

barView I have a Table View and, in each cell, I want to draw some statistic bars. I have an empty UIView created in my custom cell, its name is mainView and it is the view where the chart is drawn. ...
0
votes
0answers
113 views

Cant Add UIImageView to self.window in didFinishLaunchingWithOptions

I am attempting to add an UIImageView as the first view that is shown after my Default.png disappears. This should be super easy but for some reason I am getting a black screen. // AppDelegate.m - ...
0
votes
1answer
349 views

addSubview for Storyboard created views

At least I think it's a basic problem. I just started working with views programmatically. In RouteCaptureViewController.h: @property (strong, nonatomic) IBOutlet UIView *routeCaptureSuperView; ...
1
vote
2answers
166 views

iOS dismiss keyboard but keep editing [closed]

I have a UITextView that is being edited and I want to add a custom keyboard... is there any way to dismiss the keyboard but leave the textView in edit mode so the blue cursor keeps flashing? Or ...
0
votes
0answers
135 views

Using a subview over a fullscreen video

I'm wanting to add a custom control over a MPMoviePlayerController have followed the apple example this adds a subview over the video in order to do this. I have done this and while it works it does ...
0
votes
1answer
36 views

How can I show a UIView after take a picture?

I need to show a UIView after taking a photo (The UIView shows a loading message). Every time that I need to show a loading message I used this code: NSArray* loading = [[NSBundle mainBundle] ...

1 2 3 4 5 6