The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
49 views

(iOS) Black screen when custom initializing UIViewController

This is my first question here. I'm trying to make a program that will work with Core Audio. I found this framework http://theamazingaudioengine.com/ that I'm trying to use and so far I managed to do ...
1
vote
0answers
75 views

How to initialize void* data struct member with another struct member in C99?

let's assume that we have below struct definitions: typedef struct { uint8_t a ; } deepest_t ; typedef struct { deepest_t* deepest_ptr ; } deeper_t ; typedef struct { deeper_t* ...
0
votes
2answers
75 views

Must an Objective-C class have exactly one designated initializer?

I found some info of the designated initializer in this Apple's docs, but what I don't understand is, must each class have one and only one designated initializer? For example, what if class A has ...
2
votes
1answer
96 views

C struct initialization with C99 - Is mixing named and unnamed members valid?

Given the following: struct example_struct { char c; int i; }; Is any the following initializer syntax valid in C99? Syntax example #1 struct example_struct example = { 'a', .i = 1}; Syntax ...
4
votes
1answer
226 views

In Objective-C, the rule that designated initializer always get called is not always obeyed?

Can we rely on the fact that in Objective-C, the rule is that a class's designated initializer is always called for sure? Or can we say, it should be almost always true, except a couple of ...
0
votes
1answer
80 views

Initializing instance object in designated initializer?

I have a Rectangle class which has properties width and height. It also has an instance property/object called origin (-(XYPoint *) origin ). Below is the code for my designated initializer in which I ...
0
votes
1answer
1k views

loadNibNamed vs. initWithFrame dilemma for setting frame's height and width

I created a UIView subclass associated with .xib file. This UIView subclass is to be used in a UIViewController. In the controller, I think there are two options how we instantiate the UIView ...
0
votes
1answer
58 views

Designated initializer and passing arguments

I have this hierarchy: CreateAnObjectClass : NSObject MySecondClass : MyBaseClass MyBaseClass : NSObject in CreateAnObjectClass I want to create an instance of MySecondClass method and i want ...
3
votes
2answers
143 views

Why can't a designated initializer call a secondary initializer in its base class?

According to the documentation, a class's designated initializer in Objective-C must call the designated initializer of its base class. Another rule is that secondary initializers must call the ...
0
votes
1answer
57 views

how does designated initializers work

I am having some trouble understanding designated initializers. I am studying Objective C from the book "Learn Objective C on the Mac". The following is an implementation file. #import "Tire.h" ...
29
votes
3answers
2k views

What does dot (.) mean in a struct initializer?

static struct fuse_oprations hello_oper = { .getattr = hello_getattr, .readdir = hello_readdir, .open = hello_open, .read = hello_read, }; I don't understand this C syntax well. I ...
3
votes
3answers
184 views

Combine designated initializers and malloc in C99+?

Is there a nice way to combine designated initializers from C99, with the result of a malloc? The following seems to have needless duplication: typedef struct { int a, b, c; } Type; Type *t = ...
5
votes
5answers
108 views

Is it possible to get pointer to the 'this' structure, when using designated initializer?

This kind of struct is used as head of linked list: struct lista { struct lista* next; struct lista* prev; }; When next and prev both points to struct itself, then the list is empty. The ...
5
votes
1answer
276 views

What happens to fields not named by a designated initializer?

In C99 (and not in C++), it's possible to initialize structs using this syntax: struct info { char name[8+1]; int sz; int typ; }; struct info arr[] = { [0] = { .sz = 20, ...
12
votes
6answers
6k views

C++ Equivalent to Designated Initializers?

Recently I've been working on some embedded devices, where we have some structs and unions that need to be initialized at compile time so that we can keep certain things in flash or ROM that don't ...
10
votes
5answers
6k views

Which initializer(s) to override for UITableViewController subclass

I have a UITableViewController subclass that's instantiated, depending on where it's used, in a NIB or via code. In both cases I want to do customization in the initializer method. Does that mean I ...