The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
56 views

Programmatic Object Creation in Objective-C

Below there are two methods to programmatically alloc and init objects of various classes and 'types'. - (id)buildObjectOfClass:(NSString *)classString andType:(NSString *)typeString { id ...
1
vote
1answer
52 views

Allocating memory of vector whose tpye is own Class C++

I've so far few posts about allocating memory for vectors ( Allocating memory for class in C++ Allocating memory for class in C++, for example) but I didn't manage to find the solution for the ...
-1
votes
0answers
46 views

Xcode object not allocated

SOLVED : Debugger not showing right values. works fine with NSLog. here is a simple example of what is happening. (Xcode 4.3) I really have no idea whats wrong. in the header i declared: NSString ...
2
votes
4answers
72 views

C++ uninitialized array of class instances

I've been searching but couldn't find an answer to this. Is there a way to tell the new operator to not call the class constructors? MyObject* array = new MyObject[1000]; This will call MyObject() ...
-1
votes
0answers
94 views

Vector error ( terminate called after throwing an instance of std::bad_alloc. what():std::bad_alloc )

Code::Blocks in sending me an error but I don't know why. Could you explain me why this code sends this error? Is there something I can do to solve that problem? This is a tetravex solver. I don't ...
0
votes
3answers
41 views

Alloc and init in Cocoa

Maybe this is a dumb question, but I really want to figure this one out. For example I have the following setup: // .h @interface MyClass : NSObject { NSView *myView; } // .m @implementation ...
1
vote
2answers
24 views

allocating view controller the right way

i am trying to archiv something really simple. I add a property for a NSScrollView in my ViewController header file called PanelController: @property (strong) IBOutlet NSScrollView *listurls_fld; ...
1
vote
2answers
63 views

How to allocate array of IntPtr [] in unmanaged memory?

To allocate memory in managed code i use: IntPtr [] params_list_n = new IntPtr [5]; But for unmanaged memory i use Marshal.AllocHGlobal And I do not understand how, in this case to allocate memory ...
0
votes
1answer
59 views

Create dynamics names for UIViews [duplicate]

All is in my title, i want to create some dynamics names, to allocate some differents UIViews but randomly. For example, i want to make : Level1 * level1view = [[Level1 alloc] init]; So i try to ...
0
votes
0answers
15 views

Memory management and many UIViewController allocations

Goodmorning, I've got a very complex UIViewController which instantiates many other UIViewControllers and add their views to it as subviews. I re-instantiate this complex UIViewController many times ...
1
vote
5answers
110 views

Overriding init method to allocate memory for instance variable object

I am attempting to override the init method of a class so that initializing the object also initializes the ivar object: -(id)init { if (self = [super init]) { someIVarObject = ...
0
votes
0answers
64 views

wrong output in merge sort [closed]

#include<stdio.h> #include<conio.h> //#include<alloc.h> int* mergeSort(int*,int); int* merge(int*,int*,int); int main() { int n;int i=0; int *a,*b; scanf("%d",&n); ...
0
votes
3answers
116 views

program hangs after inputting array

#include<stdio.h> #include<conio.h> //#include<alloc.h> int* mergeSort(int*,int); int* merge(int*,int*,int); void main() { int n;int i=0; int *a,*b; scanf("%d",&n); ...
-2
votes
1answer
41 views

how to mange memory with properties

I am new to iOS so trying to understand memory management. I have a .h File which contains a property and i want to use that var in some function. @property (nonatomic, retain) NSMutableArray ...
0
votes
1answer
52 views

Properly free memory alloc'd with enif_resource_alloc

I have written an Erlang C NIF that returns a pointer to a structure after calling new and for now just increments a variable on insert. I am wondering how to properly destroy the original resource, ...
1
vote
1answer
124 views

Allocating memory in Erlang C NIF

Why would one use void *enif_alloc_resource(ErlNifResourceType* type, unsigned size) as opposed to void *enif_alloc(size_t size) when trying to allocate memory from an Erlang C NIF? Reference ...
0
votes
1answer
71 views

NSDictionary of uninitialized objects?

How can I store an uninitialized object in an NSDictionary? I think I would do it like this, but I’m not certain that it’s a good approach: NSDictionary *dict = [[NSDictionary alloc] ...
0
votes
1answer
51 views

GKPeerPickerController throwing exception “expected expression”

I have written this little piece of code: GKPeerPickerController *picker = [[GKPeerPickerController alloc] init]; but even after restarting my Mac XCode is telling me: "expected expression"! ...
2
votes
3answers
281 views

Using alloc, init in ARC enabled projects

Actually I am working on a project with ARC enabled. I know using alloc and init is taking ownership of the object. I know, If I create a string like this NSString *myString = [[NSString ...
0
votes
1answer
76 views

ObjC-Why it is incorrect when implement [alloc] and [init] methods separatly?

Never initialize an object without reassigning any pointer to that object. As an example, don’t do this: NSObject *someObject = [NSObject alloc]; [someObject init]; If the call to init returns some ...
4
votes
4answers
114 views

How do I know how much memory to realloc?

I have one question regarding design of my application. Here's the pseudo code: char* buffer_to_be_filled = (char*) malloc(somesize); fill_the_buffer(buffer_to_be_filled); free(buffer_to_be_filled); ...
-2
votes
2answers
118 views

create a queue in a specific location on the disk c++

How do I create a queue in c++ that will be allocated on a specific path? I mounted ramfs on /mnt/ram/ which is a RAM folder rather than a disk , and would like the queue to be there, so the ...
0
votes
0answers
65 views

Why alloc member occurs “unrecognized selector sent to instance” while class member doesn't

i use a class member MutableArray:theArrayOfSections to store a string valued MutableArray,for instance, theArrayOfSections' value are {A,B}, and the A value are {aa,bb}, and B so on. When i ...
0
votes
2answers
231 views

Initialize and allocate multiple variables/objects | Objective C

How would I turn this: xmlObject *system_domain = [xmlObject alloc] xmlObject *system_description = [xmlObject alloc] xmlObject *system_type = [xmlObject alloc] Into something where I would only ...
3
votes
2answers
193 views

What is best practice for new NSObject - alloc / init or change existing?

I would like to get some opinion about best practice in iOS5 and higher (ARC enabled). For example, I have a database with cars - image, name, max speed, etc. info. In app I have to show a car with ...
1
vote
0answers
115 views

I get an EXC_BAD_ACCESS when creating UIManagedDocument

I am creating UIManagedDocument and I don't know why I get the error saying: Thread 1: EXC_BAD_ACCES code=1 address=0xdeadbeef The only thing in my code is the creation of this UIManagedDocument. ...
0
votes
3answers
108 views

Using alloc in objective c for my own classes

When I use alloc on a class that I created (for example on stack class that has an underlying NSMutableArray object) will it apply alloc to all of the properties of it ? or do I have to override the ...
2
votes
5answers
143 views

is it necessary to call pointer = NULL when initializing?

when I create a pointer to certain struct, do I have to set it to NULL, then alloc it then use it? and why?
0
votes
1answer
40 views

In this string number method do I have to alloc every time it is called?

Using other answers in this forum I made this class method to tell if a string is a number. It works OK but do I have to alloc-init every time it is called? After all if this was not XCode4 that ...
0
votes
2answers
187 views

Objective-C Property assignment without @property

I'm currently developing an iOS application which was started by another developer. Usually, I make a property for every instance variable (assign for int, bool etc. / retain for all classes). So ...
3
votes
5answers
132 views

IPhone Objective C Memory Allocation

I understand that when using Alloc, new or copy you own the object and need to release the object. I understand that if I retain an object that I need to release it. But if I have the following ...
3
votes
1answer
693 views

Creating a singleton with allocWithZone:

BNRItemStore is a singleton, and I was confused on why super allocWithZone: must be called instead of plain old super alloc. And then override alloc instead of allocWithZone. #import "BNRItemStore.h" ...
1
vote
1answer
105 views

ObjC: using 'self' in init and/or initWithFrame:

I heard from someone that the state of a class is not yet stable inside -(id)init, so using 'self.something' is not recommended inside init, but I have a UIView subclass that need to add some subviews ...
5
votes
4answers
2k views

Lazy instantiation in Objective-C/ iPhone development

Quick question... Well I understand that all properties start out as nil in Objective-C and that sending a message to nil does nothing, therefore you must initialize using [[Class alloc] init]; before ...
0
votes
1answer
96 views

Initializing a subclass in objective c

I think that this may be impossible, but what I was trying to do write an static initializer in my super class "load" that will initialize even my subclasses. + (id) load { Class c = [self ...
0
votes
1answer
80 views

Objects properties not reachable from all classes

I have 3 classes in my project : HeliController, FlightView and ConnectionView. HeliController stores some connection data which is to be used by both FlightView and ConnectionView. In both ...
0
votes
2answers
148 views

How to reroot a tree which is allocated through malloc()

Below is a program which first build Binary tree from inorder and preorder and then find the node which contain largest balanced tree. My both function for Buildtree and IsBalanced is right. I am ...
0
votes
1answer
174 views

Crash when I try to alloc a UIPopoverController

Hi I am at my wits end with what I am doing wrong here. Has anyone experienced anything similar? I checked the apple developer forums, google, stack overflow and couldn't find anything. ...
0
votes
1answer
97 views

iOS >> How to Create a “Place Holder” Array for Objects that Were Not Yet Alloc/Init

In a certain view I have a bunch of AVAudioPlayer properties, each one is supposed to be played upon a certain user action. While the selected AVAudioPlayer is played, if another AVAudioPlayer was ...
1
vote
4answers
97 views

Alloc a new objective C object to a retained property?

Sorry for asking a totally basic question, but if I have a synthesized property that is retained. self.myProperty = [[NSObject alloc] init]; will cause a memory leak? So am I correct in thinking ...
0
votes
1answer
123 views

allocated too much memory

I try to do an app but I get a lot of crash an memory allocation, then I try to reduce all the code and clean it, now I get this e Why I get: Potential leak of an object allocated on line 101 and ...
2
votes
2answers
430 views

unsigned char alloc and free issue

I'm confused about one strange thing....I have an unsigned char array.... I allocate it using calloc and record some bytes data in it... but when I free this unsigned char and allocate it again, I see ...
0
votes
2answers
85 views

NSMutable Array won't alloc, remains nil

A XML parser is trying to alloc its delegate's NSMutable array called masterCodeList. From the following code, you'll see that this fails. (I am a total newbie.) if (dataController.masterCodeList == ...
0
votes
1answer
205 views

Under ARC, is there any difference between [[X alloc] initWith..] and [X xWith…]?

Take for example NSMutableArray: NSMutableArray* a1 = [[NSMutableArray alloc] initWithCapacity:10]; NSMutableArray* a2 = [NSMutableArray arrayWithCapacity:10]; Under manual reference counting, the ...
2
votes
2answers
260 views

Objective C typedef Enum memory management

Do I have to take care of memory when I deal with the enum ? This is where I declared my enum type. It is in another .h file This is where I attempt to declare variable After that Do I have o do ...
0
votes
2answers
205 views

Objective C: switch inside loop - how to avoid (potential) memory leak

I have a for loop where at the beginning an NSObject "value" is declared and then a switch statement within "value" is actually created. "value" then can be an NSNumber, an NSDate, an NSData, an ...
0
votes
2answers
111 views

iOS - App crashes Garbagecollector's fault?

My team and I are working on a quiz app and we have 1 view and we simply reload the text on the labels and buttons. Now when we start the quiz there are 2 loops which load the questions and answeres ...
0
votes
3answers
411 views

static method objective c - init once

I want to class that should be initialized only once and returns some value which was computed the first time. Is below the right approach ? @property (nonatomic, retain) NSString *userAgent; ...
2
votes
2answers
603 views

Memory allocation for an array of Objects - Is my understanding valid?

I have a question regarding memory allocation for Objects in an array. I am looking to create an array of Objects, but at compile time, I have no way of knowing how many objects I will need, and thus ...
2
votes
3answers
506 views

Who increases retain counter alloc or init? Objective-C

When we need create an object and take ownership of it we write NSObject *someObject = [[NSObject alloc] init]; After that someObject's retainCounter will be equal 1. Question is which method ...

1 2 3