Tagged Questions
A category is a group of informations.
14
votes
4answers
451 views
What kind of category methods do you use to make Cocoa programming easier?
I use a collection of category methods for Cocoa's built in classes to make my life easier. I'll post some examples, but I really want to see what other coders have come up with. What kind of handy ...
12
votes
1answer
406 views
Functor is for (a -> b) -> (f a -> f b), what is for (Category c) => c a b -> c (f a) (f b)?
I would like to have a function for either mapping a pure function to a container or sequencing applicative/monadic action through it. For pure mapping we have
fmap :: Functor f => (a -> b) ...
12
votes
2answers
3k views
Using Super in an Objective C Category?
I'd like to override a method in an Objective C class that I don't have the source to.
I've looked into it, and it appears that Categories should allow me to do this, but I'd like to use the result ...
10
votes
2answers
1k views
Doxygen and Objective-C categories
Although the latest releases of Doxygen claim better handling of Objective-C categories, it still seems to choke on categories in my source code. I'm wondering if someone has gotten it to document ...
10
votes
3answers
2k views
Can a category simultaneously implement a protocol?
If a category I'm creating for a class adds methods that also fulfill the contract set out by a protocol, I'd like to flag that category class as implementing the protocol, and thereby indicate to the ...
8
votes
4answers
402 views
What does “category” in the manifest mean?
http://developer.android.com/reference/android/content/Intent.html#addCategory(java.lang.String) says you can specify a custom category. When, why and how would you do it? What would be the use of it?
...
8
votes
5answers
5k views
Defining categories for protocols in Objective-C?
In Objective-C, I can add methods to existing classes with a category, e.g.
@interface NSString (MyCategory)
- (BOOL) startsWith: (NSString*) prefix;
@end
Is it also possible to do this with ...
8
votes
3answers
2k views
Why does the iPhone SDK use categories, rather than protocols, for some delegates?
My understanding is that protocols are like interfaces in other languages -- they declare expected methods -- while categories allow you to add new methods to existing types (perhaps even types you ...
7
votes
3answers
738 views
Are all Haskell functors endofunctors?
I'm a bit confused, and need someone to set me straight. Lets outline my current understanding:
Where E is an endofunctor, and A is some category:
E : A -> A.
Since all types and morphisms in ...
5
votes
2answers
489 views
Generic Objective-C description method to print ivar values
In Objective-C, it's common to override -description with a method that prints the object ID and instance variable names/values. I'd like to make a generic -description method that does this through ...
5
votes
2answers
809 views
Since when is it possible to declare Objective-C 2.0 properties in a category?
I always thought that one cannot declare an object property in a category.
Until my partner did it in our app's code, and it seemed to work.
I went on a SO and Google binge to try to explain to him ...
5
votes
1answer
1k views
Category Hierarchy (PHP/MySQL)
I am trying to get my all categories and sub-categories from MySQL database in a hierarchy:
My result should be like that (just example):
Cat A
Sub-Cat 1
Sub_Sub_Cat 1
...
5
votes
2answers
1k views
Magento - get filterable attributes by category
I have created a custom navigation module specifically for a website, but I really want to be able to list filterable attributes by a specific category. So for instance my main navigation is:
...
4
votes
1answer
106 views
Category deep function
How to get category deep with space padding on this function. At the moment i have select box with all categories have the same level.
<?php
add_action('add_meta_boxes', 'my_custom_metabox');
...
4
votes
2answers
128 views
Wikipedia-like list of all content pages
Wikipedia uses an "HTML sitemap" to link to every single content page. The huge amount of pages has to be split into lots of groups so that every page has a maximum of ca. 100 links, of course.
This ...
4
votes
1answer
29 views
Is there a place to put a category import statement so all classes see it?
I have an Objective-C category of UIColor that I would like to "import" everywhere in my project. But instead of using the #import to every class that needs it I was told there was a way to set it up ...
4
votes
1answer
124 views
What's the scope for objective c category
If I override a method in a category, will it just affect the files including it, or it affects the whole project?
I want to override "methodSignatureForSelector" and "forwardInvocation" to ignore ...
4
votes
1answer
121 views
How to put my published properties into the specified category of Object Inspector?
I have my own visual component. It has many published properties and events. I want them to be shown in the specified standard categories of Object Inspector at design-time (Visual, Layout, Drag Drop ...
4
votes
1answer
177 views
Use Groovy Category implicitly in all instance methods of class
I have simple Groovy category class which adds method to String instances:
final class SampleCategory {
static String withBraces(String self) {
"($self)"
}
}
I want to use this ...
4
votes
3answers
345 views
Resize NSArray Programmatically
I have been trying to figure out if it is possible to programmatically resize an NSArray, by code similar to this:
NSArray *resize = [NSArray arrayResized:oldarray size:10];
Which would a new ...
4
votes
3answers
753 views
Run JUnit Test suite from command line
How do I run a Junit 4.8.1 Test suite from command line ?
Also I want to use the categories introduces with JUnit 4.8 , is there a way where
I can specify from command line the category which I want ...
4
votes
2answers
626 views
iPhone 3.1 SDK: UIViewController category is affecting ALL ViewControllers
iPhone SDK question for you.
I've created a UIViewController category to shift a view up when UITextFields are being edited and the keyboard appears, blocking the fields. I found the code online and ...
4
votes
3answers
239 views
Objective-C Categories
If I add a category method to a class, such as NSXMLNode:
@interface NXSMLNode (mycat)
- (void)myFunc;
@end
Will this category method also be available in subclasses of NSXMLNode, such as ...
4
votes
1answer
2k views
Objective-C accessor declarations (readonly, readwrite, etc)
In the book, "Cocoa Design Patterns," the author sometimes declares a property in the @interface as readonly:
// .h
@property (readonly, copy) NSArray *shapesInOrderBackToFront;
and then later adds ...
4
votes
3answers
716 views
Will using a custom category to extend UIButton get my app rejected?
Are there greater chances of my app getting rejected by Apple if I use a custom category to extend the functionality of an UIKit interface element, let's say UIButton?
Clarification: I'm thinking ...
4
votes
3answers
633 views
How do I call the original function from the overloaded function in a category?
In Objective-C, I have a category for a class:
@interface UILabel(CustomInit)
- (id)initWithCoder:(NSCoder *)coder;
@end
What I'm doing is writing a custom init function that does some extra ...
3
votes
3answers
172 views
ExpressionEngine: Conditionally display custom fields in a channel entry form
I'm building a blog site in ExpressionEngine. I have two types of entries that I want to keep in the same channel. When a certain category is selected i'd like to show additional fields.
**EXAMPLE
...
3
votes
2answers
166 views
Making class conform to protocol with category for existing methods
I have a protocol named MyProtocol.
MyProtocol has an required method:
- (NSUInteger)length;
And some other methods.
Now i want to make the NSString class conform to MyProtocol with a category. ...
3
votes
2answers
264 views
Adding category method to NSObject, but getting warnings because it's not in the <NSObject> protocol when I call it
(I found some questions discussing the idea, but I didn't see a solution for my problem.)
I added this convenience method as a category to NSObject. (I've added other methods, so I'm still interested ...
3
votes
1answer
137 views
Obtain details of categories on a class at runtime?
In Objective-C, is there a way to list the categories on a particular class at runtime?
With the Objective-C runtime functions I can obtain details for the class and instance methods, class ...
3
votes
1answer
817 views
Objective-C Category Causing unrecognized selector
My project has a UIImage category function that I want to call from another class. I properly import the header file for the image category and I get the project to compile with no warning.
The ...
3
votes
1answer
614 views
sub category by php and mysql table
I have a table name category with following cols
cat_id | name | parent
1 | item 1 | 0
2 | item 2 | 1
3 | item 3 | 0
4 ...
3
votes
1answer
2k views
Android — What happens when device is unlocked?
I am trying to understand the intents that get launched when the device is unlocked.
For eg: Say my activity is running, and I press the power button (screen off, to lock the phone). ...
3
votes
2answers
1k views
Wordpress - Get Current Category Parents
In category.php, how would I test against a category having a parent category?
If the parent category is A, and the sub-category is B, and the user loads the URL for category B, I would like to be ...
3
votes
2answers
1k views
Make Wordpress subcategories use Category Template
I've got a category template: category-projects.php
This category has subcategories, but they're refering to the template category.php for instructions instead of the parent category. How do I make ...
3
votes
2answers
1k views
Create barchart using jfreechart with bars of same category together
I want to make bar chart using jfreechart such that the bars which belong to the same category should be displayed adjacent without any gaps. The categories should be displayed with gaps.
Also each ...
2
votes
2answers
67 views
Objective-C: Property in Category
As I cannot create a synthesized property in a Category in Objective-C, I do not know how to optimize the following code:
@interface MyClass (Variant)
@property (nonatomic, strong) NSString *test;
...
2
votes
0answers
7 views
product model and category navigation model cannot be used simultanously
i have a category navigation page in the category page which uses category navigation model .I want the category navigation page in the product page which uses product model and also i cant use ...
2
votes
2answers
53 views
How I create a database for a list of users' interested topics?
For the site I'm working on, I want a user to have the ability to checkmark multiple boxes that represent things he/she might be interested, similar to StumbleUpon. A user would check 'web ...
2
votes
3answers
97 views
Displaying product categories
I'm creating a simple website for a business to display their products. On the index page I display the 3 newest products. What I need to do now is have a category page people can go to to view ...
2
votes
2answers
297 views
Displaying images/icons besides y-axis in Flex Bar charts
I am trying to place an image besides the label in y-axis. So I have created a custom label renderer(A HBox containing and ). The source for the image has to be set based on a property present in the ...
2
votes
2answers
471 views
NSTimer Category + Blocks implementation to replace selector
I am quite new to blocks and objective-c, and i am trying to write my first category using both. My idea is to create a category on NSTimer that will receive a block as a parameter and this block will ...
2
votes
3answers
160 views
Magento empty a category (1.5)
I'm wondering if there is a quick way to remove all products from a particular category?
Or am I stuck with getting all the categories products then looping through and removing the category from ...
2
votes
4answers
496 views
Many-to-Many Hierarchy with Multiple Parents - PHP, MySQL
I'm trying to create a list of technology books by category, where each book can belong to more than one category, and each category can be both a parent category and a sub-category.
Here's an ...
2
votes
1answer
214 views
tag list made from specific category - wordpress
Is this feature built into wordpress? i didnt see anything within the codex.
codex.wordpress.org/Function_Reference/wp_tag_cloud
I have a few pages that are category specific and i would like to ...
2
votes
2answers
826 views
Running all tests from a @Category using Maven
I want to run only a subset of my unit tests, the ones defined by a specific @Category.
So I read several SO questions, such as this one (which is exactly what I am looking for), and also this one.
...
2
votes
2answers
660 views
wordpress wp_list_categories
i'm using wp_list_categories like so:
<?php
//list terms in a given taxonomy using wp_list_categories (also useful as a widget if using a PHP Code plugin)
$taxonomy = ...
2
votes
3answers
220 views
Cocoa - Calling a variadic method from another variadic one (NSString stringWithFormat call)
I have a problem with [NSString strigWithFormat:format] because it returns an id, and I have a lot of code where I changed a NSString var to an other personal type. But the compiler does not prevent ...
2
votes
1answer
749 views
setting new properties in category interface/implementation
Ok, so I have this, but it wont work:
@interface UILabel (touches)
@property (nonatomic) BOOL isMethodStep;
@end
@implementation UILabel (touches)
-(BOOL)isMethodStep {
return ...
2
votes
2answers
274 views
When running NUnit and specifying a category, can all uncategorized tests be included too?
We have several hundred test classes, with a few dozen of them marked with the following attributes:
[TestFixture]
[Explicit]
[Category("IntegrationTests")]
so they will only be run in our ...