Tagged Questions
1
vote
1answer
87 views
How is this code creating a backup of the NSMutableArray…?
Please have a look at the following category... As far as I knew one can't add instance variable to categories..
.h
//
// Created by macbook on 17.01.13.
//
// To change the template use AppCode | ...
-3
votes
2answers
112 views
Why we use Categories in Objective-C [closed]
Can anyone explain why we need categories.I need to use categories in my project but don't have an idea how to use category and why we need to use categories.
3
votes
1answer
49 views
Extending UIImageView with categories throws error on self.dispatchQueue
I try to extend the UIImageView with a new 'loadImageNamed:' method. Within this method i use a dispatchQueue but XCode throws an error, that the property 'dispatchQueue' is not found on Object of ...
3
votes
2answers
262 views
Possible to distribute an iOS app in different categories for particular countries?
As it turned out, Brazil has no Games category. We'd be happy if we could change the app's category, but only in Brazil.
4
votes
1answer
491 views
Category Not Recognizing Ivars
I have quite a large View Controller in my app and I want to clean it up by separating some of the functions into categories. I read up on how to implement a category and have:
#import "StatsVC.h"
...
2
votes
1answer
151 views
Adding Instance Variable to NSData
So, I understand that Categories in Objective-C can be used to add methods to classes without the need for subclassing. I also understand that these Categories cannot be used to add instance variables ...
3
votes
2answers
509 views
Objective C - static variables in categories
I do have a little Problem.
Since my UIViewControlles are all named in the same scheme:
MyView1Controller.h
MyView1Controller.m
MyView1.xib
MyView2Controller.h
MyView2Controller.m
MyView2.xib
...
1
vote
2answers
54 views
Load category specific to device
I have an iPhone app that I'd like to make universal, most views can be kept the same, but there are some minor modifications that need to be made for the iPad.
Is it possible to load a category ...
1
vote
1answer
171 views
Problem Implementing UIView Category
For whatever reason, the following code isn't working:
#import <Foundation/Foundation.h>
@interface UIView (FindUIViewControllerParent)
- (UIViewController *) firstAvailableUIViewController;
...
0
votes
2answers
606 views
can i override text field did end editing to include a validation check
How to override a delegate function of uitextfield such that it does the validation of entered text. ie i need to override the textfield did end editing method to perform validation and this should ...
7
votes
2answers
2k views
objective c categories and inheritance
If a method is defined in both a class and a category on that class, it is undefined which implementation will be called.
But how does this interact with inheritance? Specifically:
Given a ...
6
votes
2answers
703 views
Categories on NSObject — keeping it safe
Apple has this to say:
Categories of the Root Class
A category can add methods to any class, including the root class. Methods added to NSObject become available to all classes that are linked to ...
2
votes
5answers
2k views
Objective-c - Purpose of categories and protocols
I've been reading up on Objective-c Protocols and Categories and both seem rather pointless to me. They're both used for adding things to the program in some funny way instead of just manually adding ...
1
vote
2answers
320 views
Question about deep copying example
In the Beginning iPhone 4 book, the author has this code to create a category for creating a deep copy of an NSDictionary that has an NSArray of names for each letter of the alphabet to show an ...
0
votes
2answers
78 views
Requiring the presence of a method in an id
The Situation
My custom controller class has the following method:
- (void)requestViewControllerWithIdentifier:(NSString *)identifier fromObject:(id)object;
This causes object to receive this ...
2
votes
2answers
461 views
Problem With Objective-C Categories
The following code is giving me an error of "Cannot find interface declaration for 'StartTimerViewController'
#import "StartTimerViewController.h"
@interface StartTimerViewController (timerMethods)
...
0
votes
5answers
1k views
Can I use Categories to add class methods?
I want to add some class methods to UIColor. I've implemented them and everything compiles fine, but at runtime I get the following error:
Terminating app due to uncaught exception ...
0
votes
2answers
185 views
Big time Leaking in Objective-C Category
I created a custom NSString Category which lets me find all strings between two other strings. I'm now running into the problem of finding that there are a lot of kBs leaking from my script. Please ...
2
votes
1answer
153 views
Share the code in a secure way Objective-C
Just I'm curious.
I have created a lot of convinient categories to the Objective-C classes (NSObject, NSDictionary, NSString...), as long as very interesting subclasses that makes a lot of popular ...
0
votes
1answer
953 views
Position of nowPlayingItem in a playlist/Adding categories to MPMediaItem
I'm trying to figure out the track number of the MPMusicPlayerController's nowPlayingItem in its playlist. This would be super simple, except for the fact that the same song can appear multiple times ...
0
votes
1answer
957 views
Objective-C category method available to subclasses?
I have the following category:
@interface UIViewController (Additions)
- (void)exampleMethod;
@end
-----
#import "UIViewController+Additions.h"
@implementation UIViewController (Additions)
- ...
0
votes
1answer
604 views
Can I add a custom method to Core Data-generated classes?
I've got a couple of Core Data-generated class files that I'd like to add custom methods to. I don't need to add any instance variables. How can I do this?
I tried adding a category of methods:
// ...
1
vote
3answers
393 views
Does a Category applied to NSString also apply to NSCFString via the “toll-free bridge”?
We're integrating a library into an iPhone app which appears to use the google toolbox for iPhone internally.
The google toolbox adds a method gtm_stringBySanitizingAndEscapingForXML to NSString.
The ...
56
votes
5answers
17k views
Objective-C categories in static library
Can you guide me how to properly link static library to iphone project. I use staic library project added to app project as direct dependency (target -> general -> direct dependecies) and all works ...
2
votes
3answers
3k views
Protocol Methods not Recognized When Implemented in a Category
I have a view controller class that has to implement several protocols. Too keep things neat I have a habit of putting each protocol's methods in a category on the view controller class.
This time I ...
3
votes
4answers
3k views
Categories vs Informal Protocols
I think I understood the difference between (formal) Protocols and Categories. Now, if I got it right, informal protocols should be categories (usually defined on NSObject) which are used for certain ...
1
vote
3answers
380 views
NSString self modifying category dilema
Both work, but... Which one would you use and why ?
@implementation NSString (Extender)
-(NSString *) stringByTrimmingPrefix:(NSString *)strPrefix
{
while ([self ...
3
votes
4answers
1k views
Adding a category to NSArray
I added a category to NSArray with a helper method for sorting. My unit tests all pass, but when running the app in the simulator it blows up. Could this be because of the NSMutableArray / NSCFArray ...
0
votes
1answer
385 views
adding a category for UIView animations
I would like to have a category for UIViewController containing few simple methods to move the view controller's view around, fading it etc...
For example the method below fades in/out a the VC's ...
2
votes
3answers
3k views
objective-c static library class category, override method not working
I am using Three20 for the iphone and I am trying to change what a method does within it by using a class category. It compiles fine, but I never reach the break point in it.
I'm assuming a class ...
8
votes
4answers
3k views
Categories in static library for iPhone device 3.0
I have categories in my static library. Any application developer should set -ObjC flag to "Other Linker Flags" to use my static library properly. It works fine for iPhone device/iPhone Simulator 2.x ...
11
votes
2answers
5k views
iPhone Obj-C: Anonymous Category or “private” Category?
Style-wise (and functionally, if there is any difference), for declaring private methods, which of these is better?
@interface MyClass()
@interface MyClass(private)
