Objective-C Flashcards
Create a UIViewController manually
UIViewController *vc = [[UIViewcontroller alloc]init];
Present a UIViewController (from within another VC)
[self presentViewController:vc animated:YES completion:nil];
What is the compiler flag that indicates ARC is not in use?
-fno-objc-arc compiler flag
Stack vs. Heap?
Stack: compiler managed, variables from functions stored, LIFO, faster access.
Heap: user managed area, no size limit, slower access, fragmentation
Name some basic types
Basic: int, float, char, unsigned char, unsigned int, short, long, unsigned long, unsigned short
Void
Derived: pointer, array, structure, union, function types.
Create a constant
#define LENGTH 10 OR const int LENGTH 10;
How much space do the following take:
float
double
long double
Float: 4 bytes (32 bits)
Double: 8 bytes (64 bits)
Long Double: 10 bytes (80 bits)
How much space do the following take:
char unsigned char signed char int unsigned int short long
char: 1 byte unsigned char: 1 byte signed char: 1 byte int: 2 or 4 bytes unsigned int: 2 or 4 bytes short: 2 bytes long: 4 bytes
Does NSInteger require memory management?
No, datatypes like NSInteger, NSUinteger, and BOOL aren’t objects and don’t need memory management.
initialize an array of size 5 of ints
int arr[5] = {1,2,3,4,5};
Pass an array of ints to a function (give the signature)
-(void) myFunc: (int *)arr{
for (int i=0;i
Create an array that can be modified
NSMutableArray *myArr = [[NSMutableArray alloc] init];
OR
NSmutableArray *myArr = [NSMutableArray array];
OR
[[NSMutableArray alloc] initWithCapacity:10];
Create an array that can be modified of an exact size
myArr = [[NSMutableArray alloc] initWithCapacity:10];
Return an array from a function
- (int *) myFuncThatReturnsArray(){…}
Iterate an array with a pointer
// set pointer to start of array double balance[10]; double *p = balance;
for (int i=0;i
How do you add an NSInteger or an int to an NSMutableArray?
You can’t, the NSInteger isn’t an object and can’t be added. You CAN convert the NSInteger to an NSNumber object type then add.
Assign a pointer to an integer and print to output.
int a = 1;
int *p = &a;
NSLog(@”%d”, *p);
Check if a pointer is null.
Check if it’s not null.
if (pointer){…} //if pointer is not null it succeeds
if (!pointer){…} // if pointer is null it succeeds
What’s the difference between declaring an object id or NSObject?
With a variable typed id, you can send it any known message and the compiler will not complain.
With a variable typed NSObject *, you can only send it messages declared by NSObject (not methods of any subclass) or else it will generate a warning.
Id is the most generic declaration of an object type.
If a pointer is to an integer at space ‘1000’ and you increment its value by 1, what memory space does it point to?
It will point to memory space ‘1004’ because integers are 4 bytes.
If a character pointer is incremented, what memory space does it point to?
It will point to ‘1001’ because chars are 1 byte.
Set a pointer to the end of an array of integers and then decrement it to iterate backwards through the array..
int myArr[5] = {1,2,3,4,5};
int *endPtr = &myArr[4];
for (int i = 5; i>0;i–){
NSLog(@”%d”, *endPtr);
endPtr–;
}
Can pointers be compared with , ==, etc?
Yes, the actual address in the heap is being compared.
How would you loop on an array using only pointers?
int *ftPtr;
int *bkPtr;
int myArr[3] = {1,2,3};
ftPtr = &myArr; bkPtr = &myArr[2]
while(ftPtr <= bkPtr){
NSLog(@”%d”,*ftPtr);
ftPtr++
}
How would you declare an array of pointers to strings?`
char *myStr = “Hello”;
char *stringPtrs[100];
stringPtrs[0] = myStr;
Compare strings in C
char *str1 = “Hello”;
char *str2 = “Hello”;
strcmp(str1,str2); // returns negative if str1 < str2, 0 if equal, and > 0 if str1 greater than str2
Get string length in C
strlen(str1);
Print the 4th character in a string in C
char *myStr = “Hello”;
NSLog(@”%c”, myStr[3]);
OR
NSLog(@”%c”, *(myStr + 3));
Attach two strings together
char *str1 = “hello”;
char *str2 = “goodbye”;
strcat(str1,str2); //str1 now contains “hello goodbye”
The destination array must be large enough to hold combined strings…thus, the above example would crash.
Declare a string of size 20 and initialize it
char myStr[20] = “Hello”;
Pass an array of characters to a function
-(void) myFunction:(char []) myStr{
}
What is a pointer to a pointer?
References the address of the second pointer which, in turn, points to the location that contains the actual values.
What’s the use of pointer to pointers?
Modify strings by Reference in a function:
void myFunc(char **str){ strcpy(str, "Second"); }
Traverse array of pointers to strings (char arrays):
-(int) wordsInSenetnce:(char **)testwords{
while (*testwords){ //pointer not nil
testWords++;
}
}
How are strings represented in Objective-C?
NSString and NSMutableString
Name some important NSString methods?
NSString *myStr = @”Hello”;
[myStr capitalizedString]; [myStr lowercasedString]; [myStr hasPrefix:@"Pre"]; [myStr hasSuffix:@"Suffix"]; [myStr isEqualToString:@"Equal"];
[myStr length];
Declare a structure named Books with a title, author, subject, and book ID then create an instance of it.
struct Book{ NSString *title; NSString *author; NSString *subject; int bookID; }
struct Book book1;
Declare a function that can take a Book structure in as a parameter
- (void) structChanger:(struct Book*)book{book->author = @”John”;
book->name = @”Right!”;
}
Declare a typedef for the structure if you want to not use the keyword struct in the method signature.
typedef struct Book{
NSString *title;
} Book;
If you have a struct pointer how do you access an element?
with the arrow -> operator.
typedef struct Book{
NSString *author;
} Book;
Book book;
Book *bookPtr = &book;
bookPtr->author = @”John”;
Objective-C uses call-by-reference or call-by-value when passing arguments to method calls?
Call-by-value
What’s the signature of an Objective-C method?
- (return_type) method_name:( argumentType1 )argumentName1
joiningArgument2:( argumentType2 )argumentName2 …
joiningArgumentn:( argumentTypen )argumentNamen {
body of the function
}
What does a method definition that starts w/+ mean?
class method: can be referenced anytime by referencing the class.
What does a method definition that starts w/- mean?
instance method: can be accessed only by an instance of the class.
Difference between “methods” and “functions”?
Methods pass messages and have bracket syntax. Functions are like standard C w/normal signature.
void SomeFunction(SomeType value);
vs.
- (void)someMethodWithValue:(SomeType)value;
Whats the difference between closures in Swift and Blocks in Objective-C
Same except variables are copied and not mutable unless specified in Obj-C with the keyword __block.
Closures and Obj-C blocks are compatible and can be passed back and forth.
What is the keyword to add to a variable in a block’s scope so its value can be modified within the block’s scope?
__block int anInteger = 42;
Declare a block variable named “multiplyTwoValues” that does what the name says and returns a Double
double (^multiplyTwoValues)(double, double);
Declare block block variable named “multiplyTwoValues” that returns a double and assign a block to it. Then call it.
double (^multiplyTwoValues)(double, double) = ^(double firstVal, double secondVal){
return firstVal * secondVal;
};
multiplyTwoValues(1.0,2.0);
What’s the advantage of a callback block over a delegate to communicate information back?
The callback block is defined where the task is defined so the logic is in a single spot.
Declare a method that takes a callback block with no parameters or return values?
-(void) beginTaskWithCallbackBlock:(void (^)(void))callbackBlock;
__________
Implemented:
- (void)beginTaskWithCallbackBlock:(void (^)(void))callbackBlock {
... callbackBlock();
}
Declare block with 2 double parameters and no return?
-(void)doSomethingWithBlock:(void (^) (double, double))myBlock;
__________
Implemented:
- (void)doSomethingWithBlock:(void (^)(double, double))myBlock {…myBlock(2.0,5.0);
}
How do you ensure a block doesn’t have a retain cycle?
Don’t get a strong reference to self. Do not reference self inside the block. Instead, use the __weak keyword:
XYZBlockKeeper * __weak weakSelf = self;
self.block = ^{
[weakSelf doSomething];
}
Convert this to a block:
[self testTheBlock: void helloBlockWorld() { NSLog(@"Hello Block World!"); } ];
1) remove the return (void)
2) remove the name of the function and replace with ^
()
[self testTheBlock:
^(){
NSLog(@”Hello Block World!”);}
];
Convert this to a block:
NSString* helloBlockWorld2(NSString *greeting) {
return [NSString stringWithFormat:@”%@ Block World!”, greeting];
}
^(NSString *greeting){
return [NSString stringWithFormat:@”%@ Block World!”, greeting];
}
Compare the syntax of a block to a method call
( , … ) i.e., BOOL isAdmin(User aUser)
^) (, …
i.e., BOOL(^)(User)
What are two ways to declare a block?
“Anonymous”
^(int fVal){
return 1; };
“Named”
int (^tester)(int) = ^(int fVal){
return 1 };
(NON-ARC) In the following example is the instance of myObject released?
MyObject *myObject = [[MyObject alloc]init];
NSMutableArray *myArray = [NSMutableArray alloc]initWithObjects:myObject];
[myObject release];
No, the array still holds a reference to the object and keeps it in memory.
What is a memory leak?
Allocating memory and forgetting to deallocate it. (setting a pointer to memory using alloc but never sending a release message)
Enough leaked memory the application will run out and the program will crash.
(NON-ARC) What does autorelease do?
an object, when receiving an autorelease message, will be deallocated with the next destruction of the autorelease pool (later in the run loop).
When is memory management handled with ARC?
At compile time instead of runtime like garbage collection.
What does a protocol do?
Sets a list of behaviors that an object is expected to conform too.
What is CLANG?
the compiler frontend for C, C++, Objective-C, etc.
What is the @dynamic keyword?
Some accessors are created dynamically at runtime, such as certain ones used in CoreData’s NSManagedObject class. If you want to declare and use properties for these cases, but want to avoid warnings about methods missing at compile time, you can use the @dynamic directive instead of @synthesize.
Using the @dynamic directive essentially tells the compiler “don’t worry about it, a method is on the way.”
Where do you enable ARC?
Project->Target->Build Settings->Automatic Reference Counting->Apple Clang Language-Objective-C->Automatic Reference Counting
What is the difference between using new and alloc-init?
i.e.,
MyObject *obj = [[NSObject alloc]init];
vs.
MyObject *obj = [NSObject new];
New calls the init method and alloc->alloc.
+(id)alloc{
NSLog(@”Allocating…”);
return [super alloc];
}
-(id)init{
NSLog(@”Initializing…”);
return [super init];
}
Import UIKit
import
What is the id keyword?
It’s a generic type that can be set to anything. No need for using a pointer. Can be used polymorphically:
Ex.
id datavalue;
Fraction *f1 = [[Fraction alloc]init];
Complex *c1 = [[Complex alloc]init];
// Calls the corresponding print method // polymorphic datavalue = f1; [datavalue print]; data value = c1; [datavalue print];
When are the type tests run on type id?
Runtime
Why wouldn’t you declare most objects of type id?
Compiler doesn’t do type checking and thus can’t tell if method calls are incorrect, etc. Static typing also makes the program more readable.
What is an Objective-C class broken into?
Class implementation and class Interface.
Name some collections
NSSet
NSDictionary
NSArray
NSMutableArray
NSMutableDictionary
NSMutableSet
Initialize an NSSet with some strings then iterate it
NSSet *mySet = [NSSet setWithObjects:@”String 1”, @”String 2”, @”Whatever”, nil];
for (id value in mySet){
NSLog(@”%@”,value);
}
What is a way to initialize an NSArray or NSMutable array with initial values?
NSArray *arr = @[@1,@2,@3,@4,@5];
OR
NSArray *oldStyle = [NSArray arrayWithObjects: @”Zero”, @”One”,
@”Two”, nil];
Initialize an NSSet with an NSArray
NSSet *mySet = [NSSet setWitArray:@[@1,@2,@3]];
Create a mutable set and add then remove an object
NSMutableSet *mySet = [[NSMutableSet alloc]init];
[mySet addObject: testString];
[mySet removeObject:testString];
Create a mutable array then add and remove an object
NSMutableArray *myArr = [[NSMutableArray alloc] init];
[myArr addObject: testString];
[myArr insertObject:@”Hello”, atIndex:1];
[myArr removeObjectAtIndex:1];
How to empty a NSMutableArray?
removeAllObjects
NSMutableArray *myArr = [[NSMutableArray alloc]init];
[myArr addObject: @”HELLO”];
[myArr addObject: @”GOODBYE”];
[myArr removeAllObjects];
Remove the element at the end of a Mutable array
removeLastObject
[myArr removeLastObject];
What’s the method to add an object and key to a NSMutableXitionary? (Create a NSMutableDictionary and add an Object to it.)
setObject:forKey
NSMutableDictionary *testDictionary = [[NSMutableDictionary alloc] init];
[testDictionary setObject:[NSNumber numberWithFloat:1.23f]
forKey:[NSNumber numberWithInt:1]];
NSLog(@”Test dictionary: %@”, testDictionary);