Tagged Questions
0
votes
2answers
23 views
passing data between NSOperationQueue and mainQueue
I quite looked around to get an exact answer to this but was not able to find one.
In short: What's the best way to pass data from an operation queue to the main queue?
I have a heavy compute task ...
1
vote
1answer
58 views
app crash due to low memory on iPad4 [closed]
I had 4 iPads to test my App: #1 ipad2 (iOS 5.1) #2 ipad3 (iOS 6.1.2) #3 ipad4 (iOS 6.1.2) #4 iPad2 (iOS 6.1.3).
I runed an iPad App on these ones,after I opened a pdf file with webView 4 times, #3 ...
0
votes
3answers
51 views
Potential Leak of an Object that is released before reuse and dealloc'd on exit
Using the xcode analyzer, I am getting a warning for a potential leak of an object. This warning is perplexing and I need some explanation why I am getting this error. Here is the code in which ...
0
votes
0answers
17 views
iOS importing a project not working out with or without ARC
I am failing to implement a project someone else wrote, as a sub-project into another. This problem is concerning a custom Parser and class of TBXML. The container project uses ARC, while the ...
0
votes
1answer
52 views
iOS app crashes crashes occasionally - Upon screen display or scroll down
My iOS app crashes upon a certain screen. That happens occasionally.
The app crashes sometimes upon the appearance of the screen, or sometimes when we scroll down the screen. Here is the crash ...
0
votes
2answers
34 views
UIButton released from memory?
I create a couple of UIButtons (with selectors) in a method (throughout the life cycle of the app) and stick them all into an NSMutableArray. The created buttons are NOT properties but the array is.
...
0
votes
0answers
34 views
mutableCopyWithZone: is causing memory leak.How to fix the memory leak.I am not using ARC
Very Good Afternoon
I am facing memory leak problem due to mutableCopyWithZone: method.The following will tell that wwe are allocating and giving mutable copy of an object.So definitely its retain ...
0
votes
2answers
69 views
Proper memory management when invoking a delegate callback that may cause object to be released
I'm trying to figure out the best practice for memory management around invoking a delegate callback.
One issue I had seen in the past is that invoking a delegate callback may cause the object to be ...
4
votes
1answer
89 views
What are the best practices to avoid leaks when using objective-c blocks?
I have been working with blocks for a while and I'm trying to be aware of all leaking possible scenarios. I have read a lot about the "retain cycle loop", but I think that maybe there are other ...
0
votes
0answers
27 views
App crashes when i perform too many requests - MKNetworkKit - MKOverlayView - WMSOverMapkit
i'm developing a huge map application that covers different kind of map informations. Some of them are traffic data, graphs, and different maps from the apple ones. All of this data is presented in ...
2
votes
3answers
63 views
iVars references strong, weak or what?
In Obj-C, properties can be configured to be weak/strong. Instance variables. like following -
@interface MyClass {
NSObject *a;
}
Does the MyClass's object keep weak reference to a or strong, or ...
5
votes
1answer
75 views
NSObject released, NSString, NSArray not?
If I write -
NSObject *a = [[NSObject alloc] init]; // or UIView or something
[a release];
NSLog(@"a = %@", a); // causes EXC_BAD_ACCESS, fine
But, if I write -
NSArray *a = [[NSArray alloc] ...
1
vote
0answers
20 views
Memory Leak in FMResultSet - FMDB
I am using FMDB in my project and I have profiled my project using Instrument for Memory leaks. I have found out many leaks in this function of FMResultSet class:
- ...
-1
votes
1answer
57 views
How can i parse very long JSon string in iOS without memory error?
I am new on iOS,I have webservice and i am tring to download 9000+ product info and i have a very long JSON string,so i got this error message when products download,
malloc: * mmap(size=1978368) ...
0
votes
0answers
20 views
CCParticleSystemQuad memory growth on replaceScene
In my Cocos2d app I used CocosBuilder to create the two scene and I use some CCParticleSystemQuad in every scene loaded from the same .plist file.
Every CCParticleSystemQuad is added into a ...
1
vote
3answers
59 views
Guarantee a deallocation in ARC
I'm currently developing a game for iOS and we have a memory leak. Our project is ARC set up. I was wondering on how to ensure memory deallocation. One of the steps I was thinking of taking was ...
1
vote
1answer
40 views
How should you use release with a __block variable?
The code below works fine, I just don't know where the release should go, because I'm not sure what the rules are. I'm not using ARC.
- (void)myFunc {
// stuff happens
__block UIImage* ...
1
vote
0answers
59 views
ARC not releasing live bytes
Questions about the general model of how I should be programming in iOS.
I started before ARC, doing manual memory management. I was originally taught to make every class variable a property and ...
-2
votes
3answers
51 views
memory leaks when opening sqlite database in iOS? [closed]
I have been getting constant memory leak at this line
> if (sqlite3_open([databasePath UTF8String], &databaseHandle) != SQLITE_OK)
. What could be the reason ?? I have even closed the ...
0
votes
1answer
35 views
iPhone app flipbook animation crashing on device
The app uses a series of jpg's and a timer that steps through them to make an animation.
During the animation on the device, it crashes (didReceiveMemoryWarningError.)
I'm new to iPhone programming ...
0
votes
1answer
66 views
ImageIO dirty memory is not automatically cleared by iOS
I am creating an application which is a kind of gallery - it shows different media content as a fullscreen viewer. Allocations instrument shows that Live Bytes parameter doesn't grow higher than 40 Mb ...
0
votes
2answers
65 views
PDF memory warning/crash
Despite research on Google, and on So and http://developer.apple.com/library/ios/#documentation/2ddrawing/conceptual/drawingprintingios/GeneratingPDF/GeneratingPDF.html. I still cant find an answer to ...
1
vote
4answers
58 views
Need assistance regarding UIViewController
In an application where several UIViewControllers work together,
firstViewController added to root. Till here its fine now I want to go to secondViewController I dont want to use ...
1
vote
2answers
54 views
Need assistance regarding UIViewController life cycle
In a chat based app I have UITableView which display all friends name, on didSelectRowAtIndex I am pushing to chatViewController using navigationcontroller push method.
I have two confusion:
1> When ...
1
vote
1answer
90 views
Ipad screen blinking/flickering randomly while running my application
Most of the times when I run my application , the marked area starts blinking continuously. Sometime , the left and right margin of the iPad also starts blinking. It happens randomly.
I would like to ...
1
vote
2answers
25 views
didReceiveMemoryWarning and re-built instance variable equality checking
I'm going through my iOS app, using "Simulate Memory Warning" as my hammer of justice, and it's causing some unexpected problems (naturally). But this is one problem that has me stumped: objects are ...
0
votes
1answer
37 views
iOS - Image Management with CGImageRetain and CGImageRelease
I have the Obj-C code in my iOS app:
CGImageRef cgImage = CGImageRetain([self imageFromSampleBuffer:sampleBuffer]);
if(_delegate) {
[_delegate sessionWithPresentedFrame:[UIImage ...
3
votes
1answer
43 views
Why it crashed by using two or more webview with Image datas?
I have tested the Google Image Search link in single webview wont crash running for a long time!!! Simply tested with the webviews loaded in four tab bar items each loads the same link.For certain ...
2
votes
0answers
34 views
Memory management for webview content (Image data from script)
How to manage memory for the webview content? Creating Sample that uses the tab bar with webviews each loads html Google image search results. Its known that app running out of memory, I received ...
0
votes
2answers
95 views
iOS slow to release images while scrolling (no tableview)
Here is the problem :
I am writing an app which displays some pictures, with a treemap layout (for an example, see https://raw.github.com/beckchr/ithaka-treemap/master/Core-API.png)
This layout is ...
0
votes
0answers
93 views
How much memory does iPad 1 allow for use in application?
I develop game for iPad, and key requirement is support for iPad 1.
My app is crashing due to the lack of RAM, because I have a lot of graphics in my application.
It crashes in the moment of loading ...
2
votes
1answer
104 views
Real Memory Constantly Increasing - Removing Subviews from View - iOS (ARC)
I have an iPad app which is crashing on iPad (First model) as it is running out of memory.
In the app I have a main view which adds as subviews about 20 UIScrollViews (custom class) each containing a ...
0
votes
2answers
76 views
Basic memory-management in objective-c (ios)
I am pretty new to Objective-C and iOS-development, and I am currently trying to grasp how to do memory-management. My app in non-ARC btw.
This object is not declared anywhere in the code (not .h ...
1
vote
2answers
67 views
Blocks and memory leaks
I am using the following code to asynchronously download an image and set it to an image view .
dispatch_queue_t callerQueue = dispatch_get_current_queue();
dispatch_queue_t downloadQueue = ...
-2
votes
1answer
90 views
How do I keep an object created within a method alive in objective-c?
I want to place multiple pie charts in my application that I create using core plot. I made a wrapper class (lets call it PieChartViewController) that is a view controller and sets up the graph and ...
0
votes
1answer
68 views
How to use C++ memory management routines in Objective C module?
I need to use C++ memory allocation routines in my Objective C iOS project. However, compiler does not recognize new/delete operators yielding Use of undeclared identifier "new".
char *armsciiBuffer ...
1
vote
0answers
127 views
App crashes because of out of memory
I have a Instagram-like app with endless feed and the the camera. I am using ARC. For loading (and caching) images I'm using AFNetworking.
When i scroll feed, it's alloc and alloc a lot of memory, ...
1
vote
2answers
66 views
iOS autorelease pool blocks
I was reading the documentation from apple about memory manangement when I got to autorelease pool blocks and something got me thinking.
Any object sent an autorelease message inside the autorelease ...
0
votes
1answer
70 views
After some memory leak logs app crashes in iPhone [closed]
My application is ARC based.I am using https://github.com/pkluz/ZUUIRevealController for Facebook like menu & SDWebImage for asynchronous download .I am getting lots of low memory warning logs on ...
0
votes
1answer
34 views
View Controller not deallocated after adding GameKit
My view controller no longer gets deallocated after adding the following:
@property (strong, nonatomic) GKLocalPlayer *player;
(in viewDidLoad)
self.player = nil;
[self authenticatePlayer];
- ...
1
vote
1answer
33 views
Do I need to release CFError?
In Core Foundation, when I call a function with a CFError pointer, am I responsible to release that error afterwards? For example:
CFErrorRef error = NULL;
BOOL success = ABRecordSetValue(record, ...
-1
votes
1answer
113 views
Objective C memory leak issue
Greeting, hope you are doing well there.
I am facing an issue in my app. When I am analyzing my app that is showing
"Method returns an objective-C object with +1 retain count".
You can check ...
0
votes
1answer
42 views
Autorelease Pool Blocks
I was recently reading the Advanced Memory Management documentation when I stumbled upon the Autorelease Pool Blocks. The documentation states:
You may use an autorelease pool block inside a loop ...
0
votes
3answers
58 views
iOS - View high resolution image
I want to display a high resolution image in imageview. Here is what i do
Prepare UIImage in the background
When the file is loaded, switch to main thread
Display the image [ by using UIImageView's ...
1
vote
2answers
61 views
Allocated data of NSMutableRequest object's body not being released
In my app I have to perform a multipart POST request. In the request I have to send a file that is stored in the device's photo Library. After it is finished uploading and received the returned data, ...
0
votes
0answers
35 views
OpenGL memory management
I have created an iOS application where I use GLKViews to realise an OpenGL environment. Now that everything works as expected, I have noticed that I get huge memory allocations and memory warnings as ...
0
votes
0answers
95 views
add subview to UIScrollView IBOutlet cause Allocation abandoned memory
Disclaimer: I'm relatively new to iOS development. I'm using ARC for this project.
I have a SettingsViewController being presented as a modal view by HomeViewController using the following code:
...
1
vote
1answer
112 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 ...
1
vote
0answers
90 views
UIViewController respondsToSelector: message sent ot deallocated instance
I am posting here after reading some similar threads, but you know each issue still has his own specific problem, that's why I still need your help.
My app crashes with this stack trace:
[ReviewVC ...
0
votes
2answers
58 views
Message sent to deallocated instance - view as property
In my app, you click a button which reveals another page. Whenever you click a button on the view it crashes and shows this:
IBAction on the button:
- (IBAction)searchOptions:(id)sender {
...




