UIKit is the object-oriented framework that is responsible for most of the iOS user interface.
0
votes
0answers
28 views
How do I resize a UIImage without smoothing? [duplicate]
I have a 16x16 UIImage. I want to convert that into a 128x128 UIImage without losing the sharpness. I will be putting the resulting image straight into a UIImageView.
These are the images start is on ...
0
votes
0answers
50 views
“unrecognized selector sent to instance” crash
I've got a trouble with UI_USER_INTERFACE_IDIOM() here
- (void)viewDidLoad
{
[super viewDidLoad];
self.footerCommentActivity = self.commentActivity;
self.footerNewsActivity = ...
0
votes
1answer
45 views
Center UISegmentedControl within a UISearchBar
I am using the built-in search scope with a UISearchDisplayController, and I only have 2 segments.
The problem is that our design needs the buttons to be smaller and centered (it especially looks bad ...
0
votes
2answers
58 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] ...
1
vote
3answers
31 views
Why are the items properties in UIToolbar and UITabBar (copy) attributes instead of (retain) [duplicate]
The items properties of UIToolbar and UITabBar are designated as copied (copy) properties.
@property(nonatomic,copy) NSArray *items;
But why is this? (copy) won't deep copy the NSArray, so ...
1
vote
1answer
16 views
Subclassed UIScrollView
Is there a way to get a notification for the different UIScrollView delegate methods inside the subclassed scrollview without setting "self.delegate = self"? I need to get notification for certain ...
0
votes
1answer
40 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
22 views
[UIBarButtonItem _isAncestorOfFirstResponder]: unrecognized selector sent to instance
This code works perfectly in one app and crashes in another with message:
[UIBarButtonItem _isAncestorOfFirstResponder]: unrecognized selector sent to instance
If I comment the magical record code ...
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
15 views
Coloring links with multiple various colors in the same NSAttributedString
I'm using TTTAttributedLabel to detect clicks on links in a styled UILabel (using NSAttributedString), in an iOS 6 project. I'd like to be able to have alternating colors for links in my label; I'm ...
2
votes
1answer
24 views
How do I draw into a bitmap without antialiasing/interpolation in iOS?
I'm trying to programmatically draw into a UIImage like so:
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
...
0
votes
1answer
41 views
How do I programmatically draw to a display in iOS?
I have a method of drawing to the screen that has many benefits for my application except for the small issue that it doesn't work... at all.
I have an iOS program with a UIImageView widget and I'm ...
0
votes
1answer
17 views
iOS animation: Drop down that keeps it position
I´m trying to create a drop down menu that will display a set of controls. I got the animation working but the whole "button" moves with the animation.
My button is a UIView which is named ...
1
vote
4answers
51 views
How to set device orientation only landscape?
I'm writing a simple app under MacOS using Xcode. I want my app to be in landscape mode always. So I set landscape orientation in project properties. But when I add a button to my window.subview, this ...
0
votes
1answer
35 views
Determining if a UILocalNotification was fired from scheduling or user interaction
I'm trying to determine different scenarios of UIApplication didReceiveLocalNotification:. If a user clicks the notification the while app is inactive, I should bring them to the corresponding UI ...
0
votes
1answer
40 views
How to improve performance of UITableView loading hundreds of Images from Documents Directory?
I'm loading a list of image files from the Documents Directory and setting them inside a Custom UITableViewCell, however, my previous efforts have either been too memory heavy, or resulting in bad ...
0
votes
0answers
28 views
if UILabel.text = [different Chinese Strings], memory leak?
I was solving my app's memory leak problem, I narrowed the scope, and found out the "leak" (instruments didn't say leak, but memory went up) came from this method:
- (void)loadDataSource
{
...
3
votes
1answer
88 views
iOS Web View opening multiple links too often loses requests
One of my projects has a web view which is used to host a HTML5 web game (included in the app bundle). I've run into a curious issue. The game communicates with the hosting app via open URL calls (as ...
1
vote
1answer
40 views
Objective-C, Repeat Same Operation but Rotated by 90 Degrees
I have some code of which this is a tiny excerpt:
surfaceDimension = self.window.frame.size.height;
sliderDistancePerPoint = 1.0f / surfaceDimension / FINGER_RATIO;
addThisToSlider = ...
0
votes
0answers
25 views
Drawing in drawRect with UIBezierPath crashes application
I have a following drawRect method:
-(void)drawRect:(CGRect)rect
{
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextTranslateCTM(context, 0.0f, rect.size.height); //seems to ...
0
votes
0answers
15 views
setting UINavigationBar.tintColor creates excessive live layers
I've detected this scenario using Allocations in Instruments. It's not the only symptom, but seems to be a common source in most seemingly excessive allocations.
Setup:
iOS simulator 5.1
...
0
votes
1answer
51 views
UITableViewCell's Data is being mixed up when using GCD
I'm using GCD to load my UITableView data on the background thread, however doing so mixes up the data in my custom UITableViewCell. The titleLabel and imageView on the cell are fine, but the ...
0
votes
1answer
39 views
UIPanGestureRecognizer requireGestureRecognizerToFail delays UIScrollView
i have a UIPanGestureRecognizer on my rootViewControllers view
that controls only 2 finger swipe ( min and max are set on 2 )
I have a couple of UITableView and UIScrollView on my ...
0
votes
0answers
26 views
+50
Navigation controllers toolbar goes blank after showing a UIActionSheet from it
In an iOS run on iOS 6.1 (emulated) and 6.1.3 (physical device) application we show an UIActionSheet from a view with the following code:
UIActionSheet *actionCreateNewComment = [[UIActionSheet ...
0
votes
0answers
26 views
Retain the image loaded on canvas from photoalbum on click of Undo button
I am working on drawing in IOS using coregraphics, So I draw an image on canvas and store in a photo ablum, later I load the same drawn image from photo Album on canvas using this piece of code
...
2
votes
2answers
65 views
Having issues displaying modal view programmatically
I am very very new to iOS programming / Objective C.
The flow of events I want to have happen is: user selects tab from tab bar view controller. Once VIEW A has been loaded it will open a modal ...
1
vote
0answers
31 views
Bug dynamically subclassing a UIViewController
Summary
I am trying to dynamically subclass objects to do some cleanup before dealloc. I add a subclass to the object and add my own dealloc method that does the cleanup and then calls [super ...
0
votes
1answer
13 views
Changing UINavigationBar items when traversing the navigation hierarchy
I am trying to customize the items in the UINavigationBar using the following code:
CGSize size = [UIImage imageNamed:kGlobalNavigationBarButtonBackOrange].size;
UIButton *backButton = ...
0
votes
2answers
22 views
How to convert node position into UIKit position?
scoreLabel is cocos node.
scoreLabel.position = ccp(_dialogSprite.contentSize.width/2, _dialogSprite.contentSize.height/2 + 60);
Now I'm trying to convert node's position into UIKit, so UITextField ...
0
votes
1answer
26 views
How to prefer tap gesture over draw gesture?
In my view I'm overriding all the "touches*" methods to let the user draw on the screen. I'm recording the locations.
In addition I have two gesture recognizers on my view to detect single tap and ...
1
vote
1answer
35 views
Modifying standard keyboard on iOS
I'm looking for a way to modify the system keyboards without using a custom keyboard.
For example, I'd like to overlay an extra UIView or cover up a button programmatically. How can I get the ...
0
votes
1answer
30 views
UITableview scroll offset on an empty tableview
I'm trying to offset a uitableview similar to what you'd do if you have a search bar that you'd like to have hide by default. My problem is that I'd like the offset to exist even when the tableview is ...
0
votes
1answer
53 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 ...
1
vote
1answer
41 views
Manually override a single view's rotation animation?
I have a view whose subviews adjust based on constraints (pre-iOS 6, no auto-layout). I rotate the device and the views animate into their new positions and dimensions as expected.
I add a new view ...
0
votes
0answers
25 views
Integrate UIKit with Cocos2d performance concerns
Here's what I read "UIKit views are not designed for high performance, so you may notice a drop in performance, especially if you use UIKit in fast-paced games and using game play."
"Mixing UIKit ...
1
vote
0answers
74 views
UICollectionView cell layout is out of the collection view's bounds
I have a UICollectionView which lays its cells out using Flow Layout. It is vertically scrolling.
It fills a 320x480 screen and displays a custom UICollectionViewCell which is always 96*96 - the size ...
0
votes
1answer
17 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 ...
0
votes
0answers
54 views
When does UITableView actually display a UITableViewCell?
I'm aware of -[UITableViewDelegate tableView:willDisplayCell:forRowAtIndexPath:], but I want to know when the UITableViewCell has actually been displayed.
I have a UITextField inside the ...
0
votes
1answer
34 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
UIPanGestureRecognizer get translation for each touch point
I have a UIPanGestureRecognizer attached to a parent view, with various CCSprite I want to move around in the parent when panned. Using [gesture locationOfTouch:i inView:recognizer.view] I can get the ...
0
votes
0answers
38 views
UIMenuController custom item on UITableView [duplicate]
I have an UIMenuController I add a custom button and all works fine, it shows it and my defined selector gets called but my problem is, I only get the UIMenuController itself as the parameter but how ...
0
votes
2answers
38 views
UIKit and GCD thread-safety
Many of the posts say that UIKit is totally not thread safe. Now on Apple documentation for GCD we can read that it's the DRAWING that is not thread safe. So would code like this be OK :
...
0
votes
4answers
42 views
Subclass of UITableViewCell dont show text
I have a strange problem with my subclass of an UITableViewCell. It contains an UITextField and an UILabel.
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
...
0
votes
2answers
38 views
How do I prevent Turkish letters from dropping when using UIFont in cocos2d?
I'm doing the following to create a label that I use as part of attribution for a photo:
CCLabelTTF *imageSourceLabel = [CCLabelTTF labelWithString:[_organism imageSource] fontName:[[UIFont ...
-2
votes
0answers
46 views
How use a custom UI kit in ipad project [closed]
Certain UI kits are available in the market to speed up the UI design process of an iPad app, like here
How to use these in my iPad project and replace the default UI controls
0
votes
1answer
72 views
UIDocumentInteractionController disable open in certain apps
I'm currently using a UIDocumentInteractionController for open in functionality. When it opens it shows a list of all apps on the device that can handle that file type.
Is there a way to disable my ...
0
votes
3answers
54 views
How do I make a semi-transparent view layer above a current view?
You've likely seen this before, its become exceedingly popular in consumery chic apps like ScoutMob. I'm trying to implement a 60% transparent view on launch that will cover my home screen, explaining ...
1
vote
0answers
47 views
Core Graphics the “true looking glass” approach advice is needed
I have files with three resolutions of the same page artwork - standard, retina and double retina. The original artwork is very detailed and I'd like to create a looking glass to allow the users to ...
2
votes
1answer
56 views
Why is UIGraphicsGetCurrentContext() available globally?
From Apple iOS Documentation #UIGraphicsGetCurrentContext: "In iOS 4 and later, you may call this function from any thread of your app."
Also, why is the method call in C function format
...
0
votes
1answer
22 views
How can I make a slider that automatically moves left to right in iOS?
I'm just starting to program games for iOS with Objective-C, and I'm trying to figure out how to make a slider whose thumb moves back and forth at a random speed. I can't find anything online, maybe I ...


