0
votes
1answer
47 views

Objective C: several categories on one class

I must have misunderstood Categories I made a category on a class to extend it with some methods, and make some methods abstract following the OOP guidelines. But I thought that only when I #import ...
-1
votes
1answer
23 views

How to change category of a an app during an update? [duplicate]

I'm updating my app, but i cannot find where to change the primary category. Itunes connect let me change everything but not the categories (primary or second). Any ideas?
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 | ...
0
votes
0answers
47 views

Setting Exchange categories in iOS App

Is it possible to set the categories of an Exchange object via EVentKit in iOS? I am seeking a solution without using any external services like EWS.
1
vote
1answer
27 views

Use a Categorie from an customIOS Framework

I don't even know if it's possible, I searched but didn't find something like that. I made a custom Framework (with jverkoey/iOS-Framework) designed to be a collection of other frameworks and tools ...
2
votes
2answers
99 views

Use iOS category to create new Color

I would like to create some new UIColors that are used in my app throughout. From time to time the RGB is slightly tweaked (the exact color shade is being debated) Currently I have to create the new ...
0
votes
1answer
83 views

Using associative references in categories

Although using associative references seems to be the most widely used method to fake category variables, I can't help from thinking of it as a hack. I'm probably wrong. Thus this question. So, I know ...
3
votes
2answers
515 views

XCode 4.5 warns about method name conflicts between Categories for parent/child classes

I'm working on a project that was originally built in XCode 4.0, and then migrated to using XCode 4.2. Now I've tested out migrating to XCode 4.5, and I'm getting a ton of warnings like below... ...
4
votes
1answer
104 views

How to define methods and properties only visible within an objective-c framework?

I am trying to write an objective-c framework and I would like to have methods and properties visible only within the framework. I know I could define them in a class extension inside the ...
0
votes
2answers
43 views

basic issue: how do I include a category method in another class?

This is a super-basic question. I want to use a class from Matt Gemmell's MGImageUtilities in my app. I've added the classes UIImage+ProportionalFill.h and UIImage+ProportionalFill.m to my project. ...
1
vote
3answers
566 views

iOS: Trying to call method implemented in category

The prequel for this question is here. I have a class (A) and the class has category. In the category I've defined and implemented a method. Now I am trying in (let's assume B) class to call [a ...
1
vote
1answer
90 views

iOS5, StoryBoards, ARC: Weird categories issue

I've created a file with sql methods and now this file is really large. I'd like to split it for best practice and implementation simplicity. So, categories. I've created in xCode new objective-c ...
0
votes
3answers
745 views

Overloading method names in categories for NSManagedObjects gives a warning in Xcode 4.4 and above

I have a category for each of my NSManagedObject subclasses, where factory methods sit, so that they are not lost when automatically regenerating the class files. So that I don't need to know what ...
0
votes
1answer
185 views

Categories best practices

I am wrapping my head around using categories for some things where I might previously have been using inheritance. The thing I am doing now is more of a best-practice question where I am not sure ...
0
votes
1answer
242 views

Categories instance methods do not invoke

I have a class(Core Data Generated): @interface Place : NSManagedObject @property (nonatomic, retain) NSString * title; @property (nonatomic, retain) NSString * subtitle; @property (nonatomic, ...
0
votes
1answer
107 views

How to suppress objective C analyser warning with categories

I'm using the static code analyser in objective C and I found that using categories to spread a big file in multiple files causes the following problem: @interface TestClass : UIViewController ...
3
votes
2answers
261 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
490 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" ...
0
votes
4answers
729 views

IOS Category on NSArray Causes “instance message does not declare a method with selector”

I am trying to use the Category described in this article: http://iphonedevelopment.blogspot.com/2008/10/shuffling-arrays.html I have setup the following: // NSArray+Shuffle.h #import ...
0
votes
1answer
160 views

Using a Math Library in the iOS View Controller

I am creating a view controller for a calculator view. This calculator requires the use of a lot of heavy duty financial math. I encapsulated most of the calculations into a few functions, should ...
1
vote
3answers
99 views

When does a Category come into effect

I'm a little confused by something regarding Categories. If I have written a Category for ClassA called ClassA+Something, at what point does that category come into effect? I'm assuming a single ...
0
votes
1answer
469 views

Category and its Core classes

If I create a category on one of the core classes in IOS, Eg UIImage, then will i have to always import the header where in I have declared its interface, or because UIImage being part of UIKit, will ...
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 ...
4
votes
2answers
156 views

What effect on memory usage do categories have?

Does adding a method to an Objective-C class as a category have any effect on that class's memory usage?
15
votes
2answers
5k views

linking objective-c categories in a static library

I am developing a plugin for an iOS application. I am compiling it into a .a file which is then used by the main xcode project. So far I have create a category of the UIDevice class in this library. ...
6
votes
2answers
700 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 ...