Clang 3.1 and Apple's LLVM 4.0 introduced new literal syntax for object creation and collection indexing in Objective-C, allowing simpler use of NSNumber, NSArray and NSDictionary. Use this tag for questions regarding that syntax.
1
vote
3answers
59 views
Difference between literals and class methods for NSMutableArray and NSMutableDictionary [duplicate]
When I started with OSX/iOS I used
NSMutableArray * a1 = [NSMutableArray arrayWithCapacity:123] ;
NSMutableDictionary * d1 = [NSMutableDictionary dictionaryWithCapacity:123] ;
Then ...
2
votes
1answer
85 views
Can Objective-C's new literal syntax mimic the addObject?
I know that I can do this to :
NSMutableArray *objects = [@[objectOne, objectTwo] mutableCopy];
NSObject *someObject = [NSObject new];
objects[0] = someObject;
But is there a way for the new ...
2
votes
2answers
90 views
Special way of representing array in objective-c [duplicate]
I have seen in many places over the net and even in apple documentation when an array is represented in the following format:
@[obj1,obj2]
For eg; In predicate programming guide there is a ...
2
votes
2answers
344 views
iOS: “attempt to insert nil object from objects[1]” when creating dictionary
I'm creating a custom navigation bar class and customizing it's title attributes using the following code:
self.titleTextAttributes = @{ UITextAttributeFont: bariol,
...
4
votes
3answers
143 views
NSNumber primitive value equality vs isEqualToNumber with Obj-C Literals
Now that we have NSNumber literals with compiler support in Objective-C, is there a preferred way to compare an NSNumber to a known integer value?
The old way is
[myNumber integerValue] == 5
Now we ...
0
votes
2answers
151 views
Accessing keys in NSDictionary using [key] notation? [closed]
I have just realised that I can access NSDictionary using both objectForKey: and dict[key]?
NSDictionary *coordsDict = @{@"xpos": @5.0, @"ypos": @7.2, @"zpos": @15.7};
NSLog(@"XPOS: %@", ...
4
votes
2answers
215 views
Using @[array, of, items] vs [NSArray arrayWithObjects:]
Is there a difference between
NSArray *myArray = @[objectOne, objectTwo, objectThree];
and
NSArray *myArray = [NSArray arrayWithObjects:objectOne, objectTwo, objectThree, nil];
Is one preferred ...
2
votes
1answer
217 views
Box Custom Struct in Objective-C [duplicate]
Possible Duplicate:
How to wrap a Struct into NSObject
Can the new Clang Objective-C literals be redirected to custom classes?
I have a custom struct:
typedef struct {
float f1;
...
2
votes
3answers
156 views
List of object creation shortcuts
In the last few weeks I have accidentally stumbled across both @[obj1, obj2,...] and @{key1: value1, key2: value2, ...} as shortcut initializers for NSArray and NSDictionary, respectively. It got me ...
1
vote
2answers
242 views
Converting property lists into Objective-C literals
I'm not sure if this is possible, but I've seen people do crazy things with regex and other tools.
I want to convert this plist to an Objective-C literals:
<dict>
...
0
votes
1answer
89 views
What is the meaning of @[object1, object2]? [duplicate]
Possible Duplicate:
What kind of object does @[obj1, obj2] create?
Looking at the Master-Detail Template in Xcode, in the App Delegate the SplitViewController's view controllers are set ...
4
votes
2answers
409 views
Push object onto end of array using new literal syntax
PHP has:
arr[] = 'Push this onto my array';
Where the string will be added to the end of the array.
Is there any equivalent of this in the new Objective-C literal syntax? The most succinct way I ...
1
vote
1answer
91 views
Command in Xcode to rewrite array creation to use literal syntax
I watched a WWDC video and saw that there is a Refactor option in Xcode that -- boom -- can automatically update your whole code to use the new, more readable notation.
Rather than doing [NSArray ...
2
votes
3answers
677 views
Difference between @[] and [NSArray arrayWithObjects:] [duplicate]
Possible Duplicate:
Should I prefer to use literal syntax or constructors for creating dictionaries and arrays?
Is there any difference between:
NSArray *array = @[@"foo", @"bar"];
and
...
7
votes
1answer
885 views
Creating an NSMutableArray with a literal via mutableCopy or arrayWithArray: [duplicate]
Possible Duplicate:
Is literal creation of an NSMutableDictionary less efficient than the class helper method?
According to the WWDC video that introduces ObjectiveC literals, ...
1
vote
3answers
375 views
Should I prefer to use literal syntax or constructors for creating dictionaries and arrays? [closed]
I am reading through the iOS Developer Guide to get familiarized with the Objective-C language and currently I am having a little confusion on the topic of Container Literals and Subscript Notation as ...
12
votes
1answer
306 views
Indenting Objective-C literals with Xcode
Xcode think that this:
NSArray *persons = @[
@{
@"name": @"Bob",
@"pet": @"cat"
},
@{
@"name": @"Alice",
@"pet": @"dog"
}
];
would be better indented ...
6
votes
1answer
606 views
Is literal creation of an NSMutableDictionary less efficient than the class helper method?
Is it appreciably more efficient to create an NSMutableDictionary using a constructor
[NSMutableDictionary dictionaryWithObjectsAndKeys:@"object1", @"key1", @2, @"key2", nil];
than taking the ...
12
votes
4answers
1k views
Is there a literal syntax for mutable collections?
I know I can create an NSArray with @[@"foo", @"bar"] or an NSDictionary with @{@0 : @"foo", @1 : @"bar"}.
Is there a literal syntax for creating an NSMutableArray or an NSMutableDictionary?
4
votes
3answers
261 views
+[NSNumber numberWithUnsignedInteger:] Literal?
I know I can do @3 instead of [NSNumber numberWithInt:3], but what's the literal for [NSNumber numberWithUnsignedInteger:3]?
6
votes
3answers
216 views
Comparison of NSNumber literals
I really like the new literals in Objective-C. I am wondering if with the new additions there's a better way to compare numbers.
For example, if I want to compare a and b:
a = @1;
b = @2;
Is the ...
5
votes
2answers
300 views
Unboxed BOOLs in Objective-C literal syntax giving error
I was just experimenting with the new Objective-C literal syntax introduced as part of Xcode 4.4.
Dictionaries, integers, and arrays all work fine, but I've been having a problem getting BOOLs to ...
7
votes
2answers
275 views
Boxing the same enum member produces a larger integer when it's passed to a method
I'm using Clang's primitive-boxing feature to pack an enumeration member into NSNumber
The Boxed Enums section of the Clang doc about this says that the compiler boxes enumeration members into ...
0
votes
2answers
245 views
What kind of object does @[obj1, obj2] create?
I came across the following:
NSArray *array = @[object1, object2];
It seems to be creating an NSArray, but is this array instance an autoreleased object, or must I release it?
3
votes
2answers
901 views
Why does @YES give an “expected expression” error, but @(YES) compiles?
Using XCode 4.4's Convert to Modern Objective C Syntax, my [NSNumber numberWithBool:YES] calls were converted to @(YES). I had some issue that I've now forgotten, and changed them myself to @YES, ...
6
votes
1answer
3k views
Is there any way to get the neat Objective-C literal indexing feature in Xcode 4.4?
I read all about the new Objective-C literals, and used Xcode to convert my old code, but the indexing code didn't change. I changed it by hand but then it wouldn't compile. I saw a post that said we ...
10
votes
1answer
360 views
Is the literal object syntax only available for OS X development?
Are the new Objective-C literal syntax additions (e.g. @3.14) only available when developing for OS X and not iOS? That's what the Xcode update 4.4 seems to suggest. If so, why?
27
votes
4answers
5k views
Compiler error “expected method not found” when using subscript on NSArray
I wrote this simple code to try out the new Objective-C literal syntax for NSArrays:
NSArray *array = @[@"foo"];
NSLog(@"%@", array[0]);
The first line works fine, but the subscripting results in ...
11
votes
2answers
582 views
Can the new Clang Objective-C literals be redirected to custom classes?
Although the overloading of @ begins to tread on dangerous territory, I love the addition of the new Objective-C literals in Clang 3.1. Unfortunately the new literals are of limited use to me. Except ...
8
votes
2answers
2k views
Is there some literal dictionary or array syntax in Objective-C?
It's always been possible to create NSArrays (and NSDictionaries/NSNumber) with vararg method calls, like:
[NSArray arrayWithObjects: @"a", @"b", @"c", nil];
Can these be created with in-line ...
118
votes
3answers
30k views
What are the details of “Objective-C Literals” mentioned in the Xcode 4.4 release notes?
I was going through the release notes for Xcode 4.4 and noticed this:
LLVM 4.0 Compiler
Xcode now includes the Apple LLVM Compiler version 4.0, including the following newObjective-C language ...
9
votes
3answers
993 views
@“” string type literals for NSNumber
I love the shorthand handling of string literals in Objective C with the @"string" notation. Is there any way to get similar behavior with NSNumbers? I deal with numbers more and it's so tedious ...



