Have a look at WMGenericCollection (Disclaimer: this is my project). It is a template library that lets you create custom subclasses to the Cocoa containers, restricting them to a certain type.
There is no C++ involved - it uses the C preprocessor's #define statement to allow the creation of custom collection classes for the specified type.
The created classes could be seen as just syntactic sugar. They are 1:1 redefinitions of the Cocoa headers, but with a fixed type instead of id. This means that the types are checked at compilation time, but not enforced during runtime. In fact, there aren't any implementations provided - the standard Cocoa collections are used.
As an example, here's the code to create an NSArray subclass that only contains NSStrings:
WMGENERICARRAY_INTERFACE(NSString *, // type of the value class
// generated class names
WMStringArray, WMMutableStringArray)
Now, having the classes WMStringArray and WMMutableStringArray, what are they good for?
Compiler warnings
When using collections with a specified value type, the compiler will issue a warning on all actions which assign objects of incompatible types.

Property access
Where standard collections return id, the collections with specified type return objects of this type, enabling for example direct property access.

Automatic code creation
Xcode automatically creates code for methods that take blocks as arguments. This code is created automatically for the specified type, not for id. This enables property access in the code block, and better code completion.

Code completion
When accessing values of a collection, the compiler will know the specified type and will provide much better code completion.

Compatibility
The custom subclasses are a drop in replacement for the standard Cocoa collection classes. Only the types of returned objects and arguments change - but none of the method names.
Notes
For nearly all methods of the Cocoa classes, type checks are performed at compilation time and will throw warnings if there is a mismatch. There are two exceptions: object creation (for example with @[] and the fast enumeration object in a for loop.
But in my mind, all the other features are amazingly helpful and outweigh these two problems. Also, the type is checked when enumerating with blocks, which is a great alternative to for loops in many cases anyhow.
For more details, see the project page at github.