1
vote
1answer
32 views

Why can't I add a mask to UITableViewCell's contentView?

Is this not possible? I've tried this: UIBezierPath *maskPath; maskPath = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(20, 20, 200, 30) byRoundingCorners:(UIRectCornerTopRight | ...
0
votes
2answers
63 views

Can't remove imageView from within UIGestureRecognizer?

I have a photo on the screen which when held, I want to display at full size. Here's the gesture recognizer: UILongPressGestureRecognizer *hold = [[UILongPressGestureRecognizer alloc] ...
0
votes
1answer
57 views

Strange color in UIActionSheet

Today I added one UIActionSheet to my project and it displayed very strangely: As you can see, the action sheet displays only text - no buttons - and the background is completely black. I just want ...
0
votes
1answer
55 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
35 views

UINavigationController animation change

I am coming from this question: How to change the Push and Pop animations in a navigation based app I wanted to reverse the animation for push and pop. So that, instead of the default animating to ...
0
votes
2answers
53 views

Add explanatory text to UITableView like Things.app

Could anybody hazard a guess as to how exactly the explanatory text was added to the blank state Today screen in the Things to-do list iPhone app? Is it a background image or a view that somehow sits ...
1
vote
1answer
129 views

How to make a menu with icons spinning in a circle?

I am trying to create a menu for my app with a few icons in a circle. User should be able to spin this menu, making the icons change their positions around this circle path, but not rotating ...
1
vote
3answers
74 views

UITextView - strange text clipping

I've placed a UITextView into a UITableViewCell and sized it how I want. I can see that the size has been set correctly (by setting the text view's background color). . . however the text within the ...
0
votes
0answers
75 views

CALayer mask slows down view transitions iPhone 4

Im using a CAShapeLayer mask to animate the drawing of circular progress bar: CGMutablePathRef path = CGPathCreateMutable(); CGPathAddArc(path, Nil, 99.65, 99.25, 84, radians(startAngle), ...
1
vote
0answers
56 views

UIPageViewController - transparent areas on view controllers blend wrong

Is there a way to tell UIPageViewController to not do shadowing or blending on pixels with alpha value of 0? Right now those areas show up translucent and it looks really bad. Even better would be a ...
0
votes
1answer
64 views

How to force rotation of a UIViewController

I've a UINavigationController wich contains some UIViewController... All those UIVienController should be only in Portrait mode. But in only one of those UIViewController, I should ...
1
vote
0answers
60 views

Why do I lost UIImage quality when I want to color it

I'm currently using this code to color a white UIImage with a desired color. But after treatment, it appears that the image (embedded in a UIImageView with the good size of the original image) lost ...
0
votes
1answer
103 views

Trying to add an Edit button to the navigation bar

I had created a xcode project of single view application. I put a tableview and navigation item on my storyboard screen. Now, I bind the array data source to tableview and set the code as below to ...
1
vote
2answers
82 views

Hide the default keyboard [duplicate]

I am pretty new in this programming, I am making a app in Xcode 4.6 with custom keyboard. I made the keyboard and it is working great but I need to disable the default keyboard when I hit the text ...
0
votes
2answers
48 views

How to color a stretchable UIImage

I would like to color an UIImage stretchable but I cannot make it work. With the help of this post : How to change the color of an UIImage I've successfully colored my UIImage but when I make it ...
1
vote
1answer
41 views

Adding definition to current selector of UIButton

I want to add a sound to every button sub-view in my UIView. I have so many of these buttons so I dont want to make a category or subclass of UIButton because in that case I have to change class name ...
1
vote
1answer
86 views

How to get the alpha of an UIImage

I have a UIImage. I need to find out its alpha value. Can someone explain it to me in detail, providing links to any references and also source code of how to go about this. Please don't provide ...
0
votes
1answer
54 views

Subclass simple UIButton to checkbox

i am subclassing UIButton to create a simple Checkbox behavior. here is the code : #import "RadioButton.h" @implementation RadioButton @synthesize isSelected; -(void)touchesEnded:(NSSet *)touches ...
0
votes
2answers
53 views

Using UITapGestureRecognizer rather than manually calling tapCount

I've been checking for multiple taps, whether it is 2 or 10 by simply calling tapCount on any touch: [[touches anyObject] tapCount]==2 This simply checks for a double tap. It works fine. I'm ...
0
votes
1answer
153 views

Right align magnifying glass icon in UISearchBar

In Cocoa-Touch we find a control UISearchBar. I need to customize it so that the search icon (which we click performs the respective action) present in the textfield is right aligned. Normally we find ...
0
votes
0answers
27 views

UISearchDisplayController resets contentInset

i try to set a custom contentInset to a UISearchdisplayControllers searchResultsTableView. after initializing it _searchController = [[UISearchDisplayController alloc] initWithSearchBar:_searchBar ...
4
votes
2answers
84 views

What does UIViewController class do in viewDidLoad? [duplicate]

As in the title, I was wondering what is the "default" implementation of viewDidLoad in UIViewController? Does it really do anything? Also does it matter if in my UIViewController's subclass I write ...
2
votes
2answers
77 views

Ball Bouncing in a circle

i am successfully bouncing ball in side the UIView. i have create ball class inside in it i am using following code to move the ball. self.center=CGPointMake(self.center.x + mXSpeed, ...
0
votes
2answers
47 views

iOS Crash : Can't access memory location

I'm seeing a lot of these crashes in my crash reporter, but I have NO idea what could be causing it. I can't get it to reproduce locally. Exception Type: SIGSEGV Exception Codes: SEGV_ACCERR at ...
1
vote
1answer
52 views

How to enlarge hit area of UIGestureRecognizer?

I'm using few gesture recognizers on some views, but sometimes views are too small and it's hard to hit it. Using recognizers is necessary, so how can I enlarge hit area?
1
vote
2answers
52 views

Is it possible to dim the entire iPhone screen while keeping one view on top?

I have a UITabbar-based iphone app with a NavigationController bar on the top. I also have a logout view that I present on top, while dimming the background. You can see here: http://d.pr/i/XH6x ...
0
votes
0answers
73 views

UITableView disappears after appearing from background

I'm trying to create a music application with a "now playing" bar at the top of it. I'm using standard storyboarding for the ui (UITabbarController->UINavigationController->UITableviewcontroller) ...
0
votes
3answers
221 views

Removing internal separator from two grouped UITableView cells

I have a grouped UITableView that contains two cells. I've set a custom separatorColor for the table view, but would like to get rid of the internal separator in between the two cells, so that it ...
0
votes
0answers
86 views

UITableView Right Index Bar Height

I have a UITableView with right side letters index bar. Unfortunately the index bar is partly hidden by UITabBar. How can I customize it's height ? Thanks!
-2
votes
6answers
130 views

How can I modify a UIColor's hue, brightness and saturation?

Lets say I have a UIColor UIColor *color = [UIColor redColor]; Now I want to modify the saturation/hue/brigthness, how do I do that? I did read the documentation but i'm still really confused I ...
0
votes
1answer
57 views

UITableView update not removing section headers

I have a tableview which, when displaying more than X items, displays section headers: When I delete the last item to go below X (and therefore remove the section headers), the header view heights ...
0
votes
0answers
49 views

Show content of View Controller in parent view using Interface Builder only?

I'm wondering if its possible to display content of ViewController (doesn't matter NS or UI) in "parents" view using only connections in Interface Builder (sometimes it is convenient). For example ...
1
vote
0answers
107 views

reload UITableViewCell only after Insert-Animation finished

so i'm inserting a UITableViewCell into my tableView. [searchTableView beginUpdates]; [searchTableView insertRowsAtIndexPaths:@[newIndexPath] withRowAnimation:UITableViewRowAnimationTop]; ...
0
votes
6answers
68 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 ...
0
votes
0answers
86 views

How to move UIImageView while resizing?

I'm trying to move a UIImageView up and down while making it bigger. Now when I do those things separately it works like I thought it would, but when i combine them it looks really glitchy and like I ...
0
votes
0answers
117 views

OpenGL error 0x0501 in -[EAGLView swapBuffers] while integrating UIKIT and COCCOS2d

I am trying to integrate UIView to a simple hello world Coccos2d project.Im actually following the following tutorial http://www.raywenderlich.com/4817/how-to-integrate-cocos2d-and-uikit ,but I'm ...
0
votes
2answers
51 views

How to change the corner positions of UIImageView?

I want to show a bellow image using UIImageView. is it possible to show by UIImageView or any other way we can show it. Please help me.
0
votes
1answer
41 views

How to change length of line and rotate it dynamically?

I am trying to draw a simple straight line. For this, I am filling an UIImageView with some color with given width as, say 2 pixel and some length. Now user is provided with two UISliders out of which ...
0
votes
1answer
104 views

UISlider track image disappears on sliding

I have this piece of code that creates a custom UISlider. When I fast slide to the end the left_image.png does not show but if I do not slide, it works fine. [sliderFPS setMinimumTrackImage:[UIImage ...
9
votes
1answer
90 views

Why brightness of [UIColor whiteColor] and blackColor are equal

Let my show you some results of getting hue, saturation and brightness of three UIColors. [[UIColor redColor] getHue:&hue saturation:&saturation ...
-1
votes
1answer
69 views

how to link uikit app on iphone?

I use ssh to iphone, and can compile console apps on iphone using clang or gcc. But now how can I link against UIKit? Compiler finds headers and stuck at linking. what args I should pass to clang? ...
0
votes
0answers
56 views

Is GLKit compatible with UIKit?

In my previous apps I used CAEAGLLayer with OpenGL ES 1.1 together with UIKit and it worked fine. Is the same true for GLKit?
1
vote
1answer
123 views

UIRefreshControl use in iOS6 but not in iOS5

I want to add a UIRefreshControl for iOS6 users and a button for iOS5 users. I only want to have one package I deliver to the app store (obviously) so how can I do this? I can sense the OS version ...
0
votes
2answers
190 views

Custom UICollectionView Layout

The UICollectionView layout I need to implement contains three sections, one below the other vertically, and each section is scrollable horizontally. SECTION 1: 1 2 3 4 5 .............. SECTION 2: 1 ...
1
vote
1answer
73 views

Is this control available in UIKit?

I want to create some control which looks like "Select | Select All | Paste" I want the control popover when a button tapped. Is this control implemented in UIKit? How to create one? Special ...
0
votes
3answers
114 views

Open source alternatives to UIScrollView

Which open source alternatives to UIScrollView is there? I need paging so it would be awesome if we could categorize by that feature. I'm looking for alternatives for the sole reason that Apple ...
0
votes
1answer
54 views

Running code when the runloop is idle

I'm looking for a behaviour similar to [[NSNotificationQueue defaultQueue] enqueueNotification:not postingStyle:NSPostWhenIdle ...
1
vote
1answer
226 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 = ...
0
votes
2answers
66 views

Scale a UIScrollView (not only its content)

I have UIScrollview with a couple of UIViews init. If I scale it doesn't really scale my scrollview but it scales the content in my scrollview in a very weird way, _scrollView = [[UIScrollView ...
1
vote
0answers
117 views

Gradient on UIToolbar contained in UIPopoverController

When a UIToolbar is placed inside of a UIPopover, there is a gloss layer that is always drawn on top of it. This gloss layer is drawn regardless of whether or not there is a custom image supplied for ...

1 2 3 4 5 39