1
vote
1answer
36 views

A library that wraps iOS animations the same way three20 wraps UI Classes

I found that three20 does a great job in simplifying grunt work when it comes to arranging and laying out buttons and views etc (amongst other things). I was wondering if there was something similar ...
2
votes
1answer
36 views

My Views are only 320px across and I get poor resolution images on iPhone 5?

I have a big problem that is causing all sorts of complications. I want to make native-resolution graphics for my iPhone 5 app using the 326ppi Retina Display quality graphics. However, all of my ...
0
votes
0answers
11 views

My UIView Declares Itself as a UITextFieldDelegate

I have a UIViewController with a scroll view which hold a custom view of my own. I have made this a custom view as opposed to positioning the elements inside the scrollView just for simplicity. ...
0
votes
0answers
10 views

UIViewAutosizing issues (Chameleon UIKit)

I am working on a mac app, and I am using Chameleon (UIKit port) to build it, I've got one issue, When I'm using UIViewAutoresizingFlexibleTopMargin And top: 0 - this UIView should be on bottom ...
0
votes
1answer
73 views

UIView - resize to fit contents

I have created a subclass of UIView that has this property @propert (nonatomic, copy) NSArray *tags; The tags array contains a list of strings that the view should display. The view should adjust ...
0
votes
1answer
60 views

UITableView separator lines briefly bleed through overlaid UIView

Further to this question I asked recently, I was able to get the explanation view appearing in front of the tableview successfully, but I now have a problem whereby the tableview's separator lines are ...
0
votes
1answer
23 views

Centering a UIImageView inside a UIScrollView

I am trying to center a UIImageView in a scroll view. Here is the code I tried with no results. UIImageView *iv = [[UIImageView alloc] initWithImage:[UIImage ...
1
vote
1answer
125 views

Mixing iOS UIKit and Cocos2d

I was wondering, is it possible to develop and APP mixing UIViewController and iOS specific API elements, with Cocos2D views? A Cocos2D app runs on a UIView and hence I guess is possible to switch ...
0
votes
2answers
67 views

Problems with UIView clearColor

I am working on building a framework for iOS. The way that works is that say an app uses my framework and calls it to work. The framework presents a view controller on top of the calling app. Now ...
0
votes
1answer
134 views

Draw shadow only from 3 sides of UIView

I've successfully implemented drawing a shadow around my UIView like this: block1.layer.masksToBounds = NO; block1.layer.shadowOffset = CGSizeMake(0, 0); block1.layer.shadowRadius = 1; ...
1
vote
0answers
165 views

Change zoomScale and contentOffset of UIScrollView in UIApplicationStateBackground state

I know it's not recommended to change any view appearance when the application is moved to background state, but for my specific task I cannot postpone this activity and I really like to complete it ...
0
votes
1answer
147 views

Using touchesBegan & touchesEnded as Swipe

I'm trying to see if a user swiped all the way from one view, label, etc. to another. Here is my relevant CodeViewController.h : @property (strong, nonatomic) IBOutlet UITextField *textField; ...
0
votes
1answer
114 views

Creating custom UIView Transitions [duplicate]

I'm wondering if anyone out there knows how to make custom transitions from one UIView to another. I'd like to be able to do things like wipes, fades, splits, etc.
1
vote
2answers
123 views

Fit a UIView to screen

I would like to add portrait orientation to an application. Is there a way to shrink or fit a UIView (created in a xib) to the screen? I have landscape sized views in the xib files and would now like ...
0
votes
1answer
447 views

Change navigation bar title programmatically: Add a symbol and change its color

I would like to add a character symbol (e.g. a whitespace character followed by a bullet symbol "•") to the title of my navigation controller's UINavigationBar. Depending on the state of my app, I ...
0
votes
2answers
124 views

How to make viewDidLoad called more than once

I know that viewDidLoad method may be called multiple times during UIViewController's lifecycle. But how is that possible? How to make it called more than once not calling it directly? I tried doing ...
0
votes
6answers
73 views

UIView positioning related questions (iOS)

I have a bunch of questions: How do I position a UIView so that it is on the bottom of the view I am adding it to? How can I add a subview to a view so that it is positioned in the corner of the ...
2
votes
0answers
113 views

Is there a way to use UIView / CALayer in OpenGL or Apple's GLKit without rendering to UIImage/CGImageRef?

I know how to render a UIView/CALayer to a CGContextRef and a UIImage/CGImageRef.. That is old news. But is there a way to omit the rendering to Image/CGContextRef and use the UIView/CALayer directly ...
1
vote
2answers
77 views

Why UIView doesn't need QuartzCore.framework to work?

I realized that every views are backed up by a CALayer. So I was wondering why when we use UIView we don't need to import QuartzCore.framework in our project ? I know we need to do it if we need to ...
2
votes
1answer
333 views

Adding padding to an UIView

I'm looking for a way to add a padding property to an UIView. Ideally, I would like to avoid subclassing and putting it in a category. The usage would be something like: myview.padding = ...
4
votes
0answers
322 views

“This UIView seems to be the delegate of an NSISVariable it doesn't know anything about. This is an internal UIKit bug” Error

I am working on an opengl project. I have used some images(2 for x-y scales) and labels(8) to display the scale on the screen. My first view is a table view from which i go to openglView. But ...
0
votes
1answer
60 views

How optimized is UIView UIImageView?

In a game I'm building I want to make a UIView that represents a tiled map. I'd like to know if a UIView filled with a grid of UIImageViews would lag when animated around the screen? My first ...
1
vote
1answer
82 views

How child view will identifie set property of parent view (iPhone)?

The scenario is like, I have one UIButton in one UIView. So UIView is parent view and UIButton is child view. Now, If I set user interaction false for parent view then can I click UIButton ...
1
vote
1answer
72 views

Flipping a view only works when hiding, but not when showing

I'm using the iCarousel library to show a coverflow-like UI. Animating the iCarousel subviews directly tends to blow up, so I create a wrapper for my animation and stick a subview inside of it which ...
1
vote
0answers
71 views

Custom UINavigationBar Drawing Empty

This is probably something very easy and stupid of me but I have a custom UINavigationBar that customized it with core graphics in the drawrect method. I use it multiple times throughout my app and ...
0
votes
1answer
98 views

Lazy loading of UIViews with drawRect: drawing

I have a large UIScrollView and nearly 40 big (1000x700) UIViews to put on it. Each of those views has several subviews with custom drawing. How should i lazy load those big views? I looked up several ...
0
votes
1answer
60 views

How many ways can a UIView's dimensions be changed?

I've got a custom subclass of UIView, lets call it BottomBox. BottomBox has override methods for: -(void)setBounds:(CGRect)bounds; and -(void)setFrame:(CGRect)frame; with calls to [super ...
0
votes
1answer
46 views

Block scoping of self and dot accessors inside animateWithDuration block method of UIView

Is it safe to access self and self's properties via dot accessors inside of an animateWithDuration block? I'm having some animation glitches related to expanding self frame especially when I call ...
0
votes
0answers
151 views

Getting the velocity of a pan without a pan gesture

I'm writing a UIView subclass that uses the -touches{Began,Moved,Ended,Cancelled}:withEvent: method to track dragging and tapping. (I'm not using a pan gesture recognizer because it doesn't recognize ...
0
votes
1answer
84 views

Which component is used by lookbook.nu app?

I'm searching the way to do this: How can I do it? It is present in the "lookbook.nu" app for iPhone
0
votes
2answers
2k views

How to programmatically change a UIView's “origin” (as labeled in Xcode)?

You will notice the red "+" / "arrows" glyph in the attached screenshot. It is easy enough to change this "origin" point in Xcode. Is there also a way to do this programmatically or is this entirely ...
0
votes
1answer
113 views

How to prevent UIView background from rotating? [duplicate]

Possible Duplicate: Can I rotate a UIView without the black bars? I want the labels on my UIView to rotate (and they do) but I've set the background to a color other than black. When I ...
2
votes
1answer
163 views

I subclassed UIButton in MonoTouch but underlying ObjC class is still UIButton

I have BackButton that inherits UIButton. It doesn't have a xib, is pretty simple and contains some layout logic which I omit. Here is how I declared it: [Register("BackButton")] public class ...
0
votes
1answer
879 views

autoresizesSubviews

The iOS6 UIView Class Reference says on the property autoresizesSubviews: A Boolean value that determines whether the receiver automatically resizes its subviews when its bounds change. ...
4
votes
2answers
1k views

On iOS, drawRect cannot draw outside of the view's bounds?

I thought from some point on for OS X, and always true for iOS, that content can appear outside of the view's bounds? (for UIView) But if I create a brand new Single View app, and created a MyView ...
6
votes
1answer
558 views

Custom Aspect Ratio with AutoLayout

Let's say I have a UIView that contains a child UIView which has to be 4:3. I want to solve this problem using AutoLayot in code. I've been struggling with AutoLayout but I haven't figured out yet ...
0
votes
1answer
44 views

Place UIView At Finite Location on Screen with UITableView

I have a tableview that takes up more than the screen. Certain rows have an info button on them. When these are pressed, I want to give the user a message based on which row the info button was on. I ...
0
votes
2answers
52 views

On iOS, what is the best way to set up a subview if we really would like to do initWithCenterAndSize?

For example, if we are to draw a 100 x 100 pixel circle on the main view which covers up the whole screen on the iPad, then instead of using initWithFrame like following 2 steps in viewDidLoad: ...
0
votes
0answers
74 views

How can I handle sequential animations cleanly within an MVC design?

I've written some code that moves some objects around on the screen in sequence. As each object finishes moving, the next starts. The code is structured similarly to this: Model: moveObject { ...
0
votes
0answers
129 views

Why are sequential UIView animations displayed concurrently?

I've written some code that moves some objects around on the screen in sequence. As each object finishes moving, the next starts. The code is structured similarly to this: Model: moveObject { ...
0
votes
1answer
47 views

What is the generic “rule of thumb” for in which point of view cycle to add subviews to an UIView subclass?

What is the generic "rule of thumb" for in which point of view cycle to add subviews to an UIView subclass? For instance, if you decided to subclass UITableViewCell class in which method should you ...
0
votes
2answers
584 views

Cross-fade certain UIViews on device orientation change

I've got a bit of a query on how certain views rotate when an iOS device changes orientation. I'm developing an app right now, and it basically consists of 2 view controllers: the first being a ...
0
votes
2answers
76 views

Should I not override -[UIViewConvtroller view]?

I'm told not to override -(UIView *)view ever. Why not? I want to use a custom UIView subclass for my custom UIViewController. What's a better way to do so?
3
votes
1answer
289 views

Applying Box2D physics to UIView vs. CALayer

I've used this excellent tutorial to kickoff a small project I'm working on involving physics: http://www.cocoanetics.com/2010/05/physics-101-uikit-app-with-box2d-for-gravity/ Basically, it creates ...
0
votes
1answer
262 views

DrawRect with clear background and custom gradient layer

In UIView if you do the following: CAGradientLayer *layer = [CAGradientLayer layer]; layer.colors = [NSArray arrayWithObjects:(id) [UIColor colorWithRed:0 green:0 blue:0.1 alpha:1].CGColor,[UIColor ...
0
votes
4answers
271 views

UIButton Added to a View's Subview Won't Respond

Been looking for this answer for a while with no luck. From Google to StackOverflow. The only answers I have found so far tell people to call initWithFrame in a view instead of just init. I replaced ...
0
votes
1answer
977 views

How to determine height of the toolbar in UINavigationController?

I have a view with a toolbar presented by a UINavigationController. When I am handling UIKeyboardWillShowNotification, I'm scrolling the entire screen upwards by the height of the keyboard. The thing ...
4
votes
2answers
335 views

Performance of UIView: removeFromSuperview VS hide

This question is really basic. What is the performance difference between removing a UIView from the view hierarchy and hiding a UIView? I have read that Views that are not needed should be removed ...
1
vote
1answer
146 views

How to blend the color from different views in iPhone

I draw two diagrams with different colors in different views(UIView) and applied pan gesture recognizer on both of them. When i drag one diagram to another diagram, they are coincided or intersected ...
0
votes
2answers
486 views

UIView + Cocos2D Element

I want to add a CCSprite on my UIView, is it possible to do that? What I found were the ways to add UIKit on Cocos2D, but I want the its reverse. I want to add Cocos2D on UIKit. Any help will be ...

1 2 3 4