Tagged Questions
0
votes
2answers
40 views
UIView Rotation Magically Happening
I was given a project that was started by someone else who no longer works here.
I have a UITabBarController which holds some UIViewControllers.
If the application is running on iOS 6, everything runs ...
0
votes
0answers
33 views
Dealing with origins and sizes for different elements 4in display and 3.5in
I am trying to confirm what would be the best/most efficient way to display buttons on the 4inch (iphone5) and 3.5(other iphones).
This is my current code:
CGRect screen = [[UIScreen mainScreen] ...
0
votes
0answers
24 views
iOS: Croping and Resizing UIView
I have a stream getting played on UIView. I want to crop that view and and make it fullscreen propotionally so that view contents are not disturbed. View contents are in 4:3 proportion, following is ...
0
votes
1answer
46 views
Creating a pattern background for View
I have a view which has a patterned background. Previously I sliced the image to size so they are really large.
I think there is a better way to approach with a background color and a pattern image ...
0
votes
3answers
77 views
Adding a UIImageView and handling the size/fit
I create a view as follows:
// Create sub view for Logo
logoView =[[UIView alloc] initWithFrame:CGRectMake(0,0,screen.size.width,(screen.size.height - 230))];
[logoView setBackgroundColor:[UIColor ...
0
votes
1answer
60 views
Using Reachability throughout an application
I would like to simply use Reachability through an application to check internet connection availability. When the internet connection is lost I would like to display a custom view (overlay) which is ...
2
votes
1answer
83 views
Mask UIView Touch Detect
I have a big Frame through which i masked a smaller view
now i want to detect just smaller one but touches began did not allow me to filter masked view
any pointers ?
0
votes
2answers
55 views
How to make chain transitions?
I have 40 UIView tile objects on the screen. Then in the view controller I have routine to flip those tiles using transitionFromView message. If I flip them at once in the loop, on the simulator it ...
0
votes
0answers
49 views
bug annimation on ios 5/5.1
I don't have the same result for this simple animation, it works fine on ios 6/6.0.1 but not on ios 5/5.1 it doesn't have a same comportment.
[UIView animateWithDuration:0.4 delay:0
...
0
votes
2answers
79 views
Setting up a UITableView inside View Controller Programatically
I have setup a UITableView controller within my view controller as follows:
fieldView = [[UITableView alloc] initWithFrame:CGRectMake(0, logoView.bounds.size.height, 320, (screen.size.height - ...
0
votes
2answers
63 views
Difference between where fields/variables are declared
Simple question, as I am new to IOS.
What is the difference as to where you declare variables/fields etc.
Option 1 (header file)
@interface ViewController : UIViewController {
UIView *testView;
}
...
1
vote
0answers
60 views
Disabled keyboard state in iOS 6?
I have implemented a "token" or "chip" text field similar to the stock messaging apps where a user enters entries which become colored tokens. When a user presses backspace, it highlights the token, ...
1
vote
2answers
53 views
Handling view resizing programatically heights, widths and margins
I am trying to setup a view programatically. Through preference I prefer to programme the views as opposed to using Interface Builder, I feel I have a better control for some reason...
I am setting ...
0
votes
1answer
20 views
Creating logic to handle view/button sizes
I would like to create some logic to handle the view sizes for a subview and some buttons, based on the mainscreen size.
So I would like to do something like this:
//Discover the main screen size ...
-3
votes
2answers
50 views
Creating a view with multiple objects/layers [closed]
I am looking for a tutorial on how to create a complex view in code.
For example, a background image to the view, multiple sub views with buttons.
Is there any tutorials on how to complete this?
0
votes
0answers
61 views
how to fill color in uiview with display the uiview background Image
I Have an background Image in UIView and I fill the color using drawRect method. But after I fill the color the background Image is not shown. I need to shown that. Can any give me any idea about ...
0
votes
1answer
149 views
IPhone development: Background Image for UIView seems at the double resolution in the IOS Simulator
I am working on the project I described in IPhone development: How to build a custom view hierarchy? . I am still struggling with the issues I described in that topic and meanwhile I tried to do ...
0
votes
1answer
117 views
Main Thread processing issue
In my application i am using back ground thread for hitting multiple service and perform operation with core data. I have used main thread for back ground process ,Its working fine.
Here is my code
...
1
vote
1answer
228 views
UIView frame changes when dismissing present view controller
I have a view that is modal presented. This view presents another modal view. When the view is dismissed the initial view (the first modal view) changes it's frame.. So a toolbar I have on this view ...
1
vote
1answer
120 views
childViewController not getting deallocated after removing from parentViewController
I'm adding a child view controller as follows:
loginViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"LoginViewController"];
loginViewController.delegate = self;
[self ...
1
vote
1answer
186 views
Creating a loading screen for application
I understand that implementing a Default image to load is easy enough.
However, I would like a loading screen with some animation. Like DrawSomething app where different assets come in to make the ...
3
votes
1answer
67 views
How to perform operations in each iteration of UIView animateWithDuration
I am changing the size of a view using animation and I need to change the image of imageview inside that view in every step of the animation. The image depends on the view size that's why I want to do ...
2
votes
3answers
175 views
How can I flip between two UIView?
I'm using two UITextView objects. Each UITextView represents the side of a single card in a flash card application. Just like when using regular flash cards, I want the user to have the ability to ...
0
votes
1answer
46 views
Upgrading code to IOS5 Storyboard… self.view assignments not working
I'm new to this and couldn't find an answer.
On my old 4.x app, I added files in which I implemented my own UIView, where I ran some "drawRect:(CGRect)rect" to paint some lines. For example...
/// ...
0
votes
1answer
140 views
iOS: How to convert the self-drawn content of an UIView to an image (widespread general solution returns blank image)?
My business app requires a feature to let the user draw a signature on a UIView with his finger and save it (via button click in the toolbar) so it can be attached to an unit. These units are going to ...
0
votes
2answers
170 views
Scroll up UITextField on Next
I am creating a "sign in" and "create account" form for my iOS app. I successfully implemented the scrolling up of the UITextField when it is hidden. However, now that I implemented the "next" button ...
0
votes
2answers
54 views
UIImageView delay when adding to another UIView
This is my first post here - but I've been a reader for a long time. Thank you so much for this site! :-)
I am currently working on a port of my XNA-based 2D engine from WP7 to iOS (5). I would ...
0
votes
0answers
59 views
Unable to collapse UITableView
I am working on a mail app where the message view has a label named "Details" which is supposed to expand and collapse the "to:" and "cc:" fields. What i've done is that i've taken each of these ...
0
votes
1answer
559 views
Changing UINavigation controller to work with SlidePanel
I am trying to change my existing setup to work with a SlidePanel. The slide panel is from JA here:- https://github.com/gotosleep/JASidePanels
My Existing code is as follows:
App Delegate did finish ...
1
vote
0answers
973 views
Creating a slide in side view controller
I would like to know how to create a 'side' View Controller. They are becoming increasingly popular...
Apps such as Facebook and Words with Friends use these on IOS, these are two extremely popular ...
0
votes
1answer
136 views
My Custom UIView Show but nothing inside it when using iCarousel?
I'm Using iCarousel to show my Custom UIView in CoverFlow Mode but when i run my app it is show up but nothing inside it , it is like not the view i add ???
so can u help me ???
- (UIView ...
0
votes
2answers
891 views
What type of contents UIViewContentMode mode refers to?
According to the official doc on UIView about the contentMode property:
The content mode specifies how the cached bitmap of the view’s layer is adjusted when the view’s bounds change
What's defined ...
0
votes
1answer
49 views
Adding subviews to a UIView at initialization
In the initialization method for a UIView subclass I am adding several UIImageViews. When the view is rendered they are present in the subviews array and have valid frame rects, but are not drawn on ...
0
votes
1answer
224 views
IOS 6 Update code error switching views
im designing a app thats a single view application and i am adding the code so that i can switch views via a button but every-time i enter my code that was working in IOS 5 it now comes up with a ...
0
votes
1answer
167 views
cocoa touch hitTest withEvent can recognize UIView subclass
I have a view with subViews, these subViews are a subClass of UIView, in the example the subClass is called ESDcelda
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if ...
1
vote
1answer
297 views
Unable to implement simple view scrolling in iOS
I'm having a hard time implementing a simple scroll on my detail view.
The app is straightforward with a Master and Detail views.
When the user taps an item on Master, the Detail view is pushed with ...
1
vote
0answers
81 views
UILabel does not change
@interface TopBarController : UIViewController <AVAudioPlayerDelegate, UIAlertViewDelegate> {
UILabel *coinWatch; }
@property (nonatomic,retain) UILabel *coinWatch;
- (UIView ...
0
votes
0answers
64 views
Notification when a UIView is destroyed
I have a custom UITableViewCell (subclassed) and it works great. Part of the cell is a UITextField, which I expose externally as a @property. However, everything is managed internally within the cell, ...
1
vote
1answer
71 views
Error in Switching views due to AppDelegate method
This is what i am doing in my application:
in my appDelegate.m file ,
//Four Views
@synthesize fvc;
@synthesize svc;
@synthesize tvc;
@synthesize pvc;
- (BOOL)application:(UIApplication ...
0
votes
0answers
45 views
In iOS 5 how to calculate the center of a UIView when it's embedded in multiple UIViews (ScrollView TabBar…)
For a universal app (iPhone/iPad) I've got UIImageView in a UIScrollView in a UINavigationController in a UITabBarController.
How do I find the center of the UIView so I can center a ...
0
votes
1answer
126 views
ViewController containing UIView which is a MKMapView
I have a view controller and I want part of it to be a UIView which I would put custom UIViews that I've created in and change them throughout the run of the app.
I have my view controller and in the ...
4
votes
2answers
874 views
Assertion failure using MBProgressHUD - View must not be nil
I am trying to use the MBProgressHUD within an application. I am getting an error at the point the HUD is added to the view.
This is the code that adds the progress bar to the view.
HUD = ...
0
votes
1answer
34 views
About UIViews delegate
My question is quite simple but no way to find a simple exemple on internet.
I have a main view controller with buttons and i'd like to display an UIView created with IB when i click on a button, so ...
0
votes
0answers
138 views
Unexpected UIView offset in UIViewController hierarchy with container controllers and UINavigationController
I have a UINavigationController with a number of child view controllers, some of which are container controllers. The UIView frame layout of the last added child UIViewController (green background) ...
1
vote
2answers
688 views
How to add a horizontal line in iOS using StoryBoard? [closed]
In my app I am trying to create a customized/stylish horizontal line in-between two labels. I have searched in SO and Google but it has only by code. How to add a horizontal line using story board?
...
0
votes
1answer
313 views
Rendering new UIView layer contents on background thread?
I have a whole bunch of rotating animated UIView instances whose contents are set to various CGImage that are all (and by nature need to be) created on-the-fly. It's working great, but image ...
0
votes
1answer
76 views
How to drag one UIView on another UIView and swap those two views?
I added 4 views in a window and I'm able to move those views by using touchesMoved method. My question is if I drag view1 on view2, the positions of view1 and view2 will be swapped. Similarly if i ...
1
vote
1answer
82 views
UIView assigned with objectAtIndex allocates too much memory
After hours of sitting on this problem (I really feel like a chicken on a dragon egg) I come here to ask.
The problem is: I have an async queue with my timer (created with mach_absolute_time()) which ...
2
votes
2answers
262 views
How to embed nibs programmatically?
I have a UIViewController with an UIScrollView in it.
Then I created a new UIView subclass with some properties that I want to programmatically add in this UIScrollView until my data ends.
Something ...
0
votes
2answers
62 views
Managing another UIView outlet with parent view
I have a UITableView outlet on a UIViewController, the hierarchy is as is the following image:
I want to place another view say "bottomView" under the parent view (which includes the current ...

