Tagged Questions
0
votes
2answers
61 views
Obective C create a C array property
I'd like to create a property made by an array of CGRect pointers, the number is not defined at the beginning, so I'd like to create a pointer of to a zone o memory that contains the beginning of this ...
2
votes
3answers
59 views
running out of memory from for loop
Hey so i thought it would be cool if i made a little app that generated a random password and then had the app run through all the possibilities and try to see what the password was tell me how many ...
0
votes
0answers
22 views
Core Text Memory allocation issue
I inspected my app with the allocation instrument and I discovered that this code down here cause me an allocation issue. The method returns the suggested height of a squared area filled with the ...
0
votes
1answer
33 views
Why tiny memory leak in this func related to UIGraphicsBeginImageContext?
I have a simple function to create an UIImage with special size :
- (UIImage*)imageWithSize:(CGSize) imSize
{
UIGraphicsBeginImageContext( imSize );
float r = 0.5f;
float g = 0.5f;
...
-1
votes
2answers
51 views
Obj C - Give Variable new memory address everytime method is called [closed]
Is there a way to reallocate a variable to give it a different memory address inside a for loop
I am using ARC
The main part of the code is here;
- (void) deal:(BOOL)isDefault
{
player = ...
0
votes
1answer
44 views
Memory Leaks in CFStreamCreatePairWithSocketToHost iOS
I use NSInputstream & NSOutputstream to setup a connection and send data. My stream object has a function to open and close the stream. I use the following code:
@interface Stream()
{
...
-1
votes
1answer
35 views
EXEC_BAD_ACCES on objective c class [closed]
I've created a small class which should be used to manage a SQLite database. But now, when I try to initialize the class and call a method - I get a EXEC_BAD_ACCES error. I've seen that this has ...
0
votes
2answers
49 views
Objective-C iOS app not storing data in array of objects
this is a very hard question to ask because I don't want to flood you with all of my code, being that most of it is not pertinent to the problem. So I won't be to surprised if this goes unanswered. ...
0
votes
1answer
90 views
iOS 5 and 6 free malloc-ed memory under ARC
How to free dynamically allocated memory in Objective-C under ARC?
By dynamically i mean memory allocated with malloc to some ivar.
dealloc and viewDidUnload are no longer being called, at least by ...
1
vote
1answer
111 views
iOS app exhausting memory during download of very large file
I know variations of my question have been asked in one form or another many times on here - I've been searching these posts extensively for days and I think my problem is unique. Allow me to ...
0
votes
2answers
42 views
Storyboard and memory management
I am using storyboard and i stumbled upon something i have not been able to grasp.
I am putting up my view controller programmatically with performSegueWithIdentifier:.
It works like a charm, but ...
2
votes
4answers
94 views
CPU and Memory usage of a method call in iPhone
I am trying to add some performance stats to a method call for my iPhone app. I used the following to find the time to process:
#define TICK NSDate *startTime = [NSDate date]
#define TOCK ...
0
votes
3answers
77 views
Allocation of already allocated memory
I am developping an Objective-C (iOS) application which use very big-sized arrays (size > 10 000) in a C-based part of the app.
At a moment of the execution, i make a malloc of a little struct i ...
1
vote
2answers
117 views
Track allocations/memory usage and also step through code in XCode?
My app is downloading base64 encoded content, in most cases PDF documents. It is transferred via web service and wrapped up in SOAP. The documents can reach sizes of up to 100 MB.
To store these ...
0
votes
1answer
50 views
Pointers and dictionary : copied or stored?
It seems that the object stored in a dictionary is a copy of the original object !
So strange !!
In the following code,
myData = [NSMutableDictionary dictionaryWithObjects:[NSArray ...
0
votes
1answer
135 views
Memory management, many images in UICollectionView
I'm showing thumbnails of pictures (from the internet) in a UICollectionView in my app. When there are too many (like 20+) and too high res'd images the app simply crashes. I'm sort of an amateur when ...
3
votes
1answer
64 views
How can I avoid keeping the contents of NSData in active memory?
My app requires data such as images and video to be sent across a network. I managed to split the files up into smaller chunks using an acceptable amount of RAM, like so:
NSData *data = ...
-1
votes
1answer
87 views
IOS: Project crashing due to possibly using to much memory (Using ARC but might be due to image size)
Hey all I am having some problems with my app. This is my first big project for the IOS and I have been doing pretty good so far some parts that troubled here and there. But now that development is ...
0
votes
3answers
77 views
Find out how much memory an iPhone has?
My app takes the NSData of movie objects and sends it over a network. The problem is, if the video is large enough, I'm worried my app will crash because of having so much data in memory. Is there a ...
1
vote
1answer
62 views
app crashing after taking 3rd picture - iOS
I have a view in which there are 6 image views. I set the images using camera UIImagePickerController. Everytime I picked the 3rd image, my app always crash and when I checked the Instruments, there ...
0
votes
0answers
39 views
Heapshot grow little but received Memory Warning
I am tuning my code with Instruments. My app calls camera and take a picture, then sends the photo to my another controller. In my original controller, I received a memory warning. Sometimes the app ...
0
votes
4answers
79 views
Use and re-use some objects (Subclass of UIView)
I wonder, from a memory point of view, if what I'm doing is correct.
First, the files that I want to re-use are subclasses of UIViews.
In my UIViewcontroller, I declare an object like this :
...
4
votes
4answers
286 views
Memory issues when encrypting/decrypting a large file with RNCryptor on iOS
I'm trying to use RNCryptor to encrypt and decrypt large files (600+MB) on iOS. On the github I found example code on how to use the library asynchronously on streams. This code is similar to the ...
1
vote
1answer
84 views
iphone memory issue while downloading images
I have a wierd problem. The requirement is to download image from a url on swipe and display it in image view .It is working all fine but I am getting memory warnings after 30 images and after few ...
1
vote
1answer
83 views
ARC is enabled. Why the 'dealloc' method doesn't call?
ARC is enabled. Why the 'dealloc' method doesn't call? Should I use @autoreleasepool here or not? Why?
Thank you.
@interface Test : NSObject
@end
@implementation Test
+(id)testFromNothing
{
id ...
0
votes
0answers
45 views
Keep UIWebView Webpage in memory when App is in background
I currently have an UIWebView with a webpage loaded where I get javascript events like "chat messages". My problem is that my UIWebView gets destroyed after my app is in the background for a few ...
1
vote
1answer
68 views
Finding different instances in NSKeyedArchiver
I am currently using this blog where it uses custom classes used with NSKeyedArchiver. Everything seems correct but I am wondering how to get different instances of "student".
...
4
votes
1answer
149 views
NSMutableArray replaceObjectAtIndex:withObject Loop Leakage
I've edited the previous post with some working code for convenience.
The follow code (ARC'ed) seems to leak and will crash the sim or the device after running for a short period of time:
#define ...
-1
votes
1answer
101 views
Objective C iPad - Memory problems using ARC [duplicate]
I have a memory problem with this loop. I use ARC, so normally I cannot release any objects. But during this loop process, the memory grow up and the iPad crash after a moment (without warning and ...
0
votes
0answers
57 views
FMDB take a lot of memory when running
I have a database to store downloading and downloaded files states. When I use FMDB to get a file state (downloaded/downloading) the memory drops down significantly (about 30 - 40 MB) and the console ...
-3
votes
2answers
104 views
How important is memory release for iPhone Apps? [closed]
I am a beginner of Objective C. I know java programming and in the intro level course, memory release is not covered (and I don't know whether there is one in a more advanced level course or java ...
1
vote
2answers
107 views
Objective C Memory Crash, UIImageView
My app assigns and displays an image inside of a UIImageView. This happens with 24 imageViews all at viewDidLoad. The images are assigned randomly from a list of fifty images. The view controller is ...
0
votes
0answers
55 views
UIImageView Memory Allocation
In one of my classes, when the view loads, a random image (from a list of 50 images) is assigned to all of 24 UIImageViews (6 Rows, 4 Columns). However, when the view loads around three times, the app ...
1
vote
1answer
53 views
Does Objective-C Reference Assigned Fields or Creates New Instances
Say for example I have the following definition of MyClass:
@interface MyClass
{
ClassWithBigMemoryUsage* cwbmu;
}
-(void) setClassWithBigMemoryUsage:(ClassWithBigMemoryUsage*) assignment; // ...
2
votes
1answer
41 views
Where does vm_stat get its information from?
What libraries/system calls/files does vm_stat use to get information about active pages, inactive pages, etc.?
1
vote
1answer
78 views
memory issue with a NSMutableString
Im having problems filtering an array using a predicate. My code is this one:
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSError *error;
...
1
vote
2answers
75 views
Why can't instruments track my memory usage?
I'm developing an app for the App Store, and having strange issues with memory management.
I am using ARC.
When testing my app on an unjailbroken iPod touch 4G 6.0.1 connected to Instruments, ...
-2
votes
4answers
137 views
free function not working in c / objective-c [duplicate]
Possible Duplicate:
How do malloc() and free() work?
I have encountered a weird problem and I'm really not sure why it doesn't work.
I have the following code in Xcode:
void *ptr = ...
1
vote
3answers
71 views
ObjectiveC - constructor, memory management
I'm beginner ObectiveC user so please keep potential answers simple.
I have quite a few years experience with C and C++.
Now, with ObjectiveC I want to create two objects, not using properties. My ...
12
votes
1answer
178 views
Why does a message send cause a retain cycle warning in ARC, but a property set does not?
[self.foo setBlock:^{
[self doSomething]; // causes warning
}];
versus
[self.foo setBlock:^{
self.bar = baz; // does not cause warning
}];
The warning being "Capturing self strongly ...
1
vote
1answer
103 views
What does it mean when a variable is both __block and __weak in ARC?
I understand that __block in ARC retains the variable. This can then be used when accessing a variable within a block before the variable has been assigned, as in:
__block __weak id observer = ...
1
vote
0answers
56 views
Internal memory crash from NSLocalizedStringFromTableInBundle call
I have a call to NSLocalizedStringFromTableInBundle which typically works, so I know it has the right parameters for key, table, & bundle name. However, after another, seemingly unrelated ...
1
vote
2answers
85 views
NSMutableArray Sorting and grouping with memory Optimisation
NSArray has ItemObject's in it. This ItemObject's are not grouped based on ItemID
The Sample of the json is displayed below:
You will note the itemIDs "a123","a124". There can be n number of itemIDs.
...
1
vote
2answers
46 views
Objective C basic memory issue
I've recently started to learn Objective C and I'm kind of confused of some basic memory issues. For example in a tutorial I've seen this:
- (void) setVin: (NSNumber*)newVin {
[vin release];
...
0
votes
3answers
256 views
Objective-C: Handling large amounts of images in memory
What might be an acceptable solution for handling large amounts of images in memory?
Currently I'm building a photo-sharing application (in some sense similar to Instagram). I've been able to mimic ...
0
votes
0answers
61 views
Memory leak pList array with analyzer - how to resolve?
I have a project where I am loading an array of dictionary objects from a pList file and then iterating through them to instantiate some "Chapter" for the app. The analyzer tells me I have a memory ...
0
votes
2answers
57 views
Object is not released after dealloc
Heapshots show that objects are not released, and at the same time logs show that dealloc was called. i do release all properties and remove all superviews in dealloc. So why memory is still not ...
0
votes
2answers
104 views
Cocoa - Memory Issues - NSTableView
I have a small issue with memory with the current code I have written, I'm new to cocoa and programming with object orientated languages, so currently Xcode does all the memory management stuff for ...
-2
votes
3answers
49 views
Timestamp of object creation, it's possible?
Just for curiosity...
It's possible to know the timestamp of an object creation in Objective-C or others languages?
[_MyObj creationTime] ?
1
vote
3answers
148 views
Issue with NSString size
I want to assign large amount of character from a file to a NSString. I did that. It is working fine for me in iOS simulator. But crashed in iOS devices. I think, length exceeds the NSString memory. I ...

