Tagged Questions
0
votes
1answer
31 views
Animations crash App after going into background
After looking for some feedback on how to clean up animations once they've finished I implemented the following;
- (void)onAnimationComplete:(NSString *)animationID finished:(NSNumber *)finished ...
3
votes
1answer
63 views
How to Clear Inactive Memories in ios
You have likely seen the many app which display information related to memory like active memory, inactive memory and free memory, i have found out all above information related to memory.
My ...
1
vote
1answer
33 views
Object sent - autorelease too many times, getting this leak for my iPhone app?
I am getting too many Object sent - autorelease too many times, this memory leak for my iPhone app and dont know how to resolve it
http://screencast.com/t/fPzMNewvq
Above is screen shot for the same.
...
0
votes
2answers
33 views
Getting memory leak in while adding button on Status bar in my iPhone project
I am getting memory leak while adding button on status bar, whaen I am tries to release the leak object, the button wont display on status bar.
http://screencast.com/t/d20XBvYBcgu
Above is screenshot ...
0
votes
0answers
23 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
37 views
UIImage Animation Causing App to Crash / Memory Leaks
I'm using a UIImage animation and it is causing numerous memory leaks and crashes for different users using the application.
Below is my code. I am preloading the set of two animation in ...
-1
votes
0answers
38 views
Black/Empty ImagesViews on much Memory using [closed]
I init a ViewController from nib and push it to the NavigationController.
The problem is, some ImageViews in the new ViewController are Black and when i'm going back to the ViewController (Tapku ...
0
votes
1answer
151 views
Failed to load large image in UI Webview ios
I am working on an iPhone/iPad application. Trying to load very large image in UIImage view stored in local directory in app. Code:
NSString *path = [[NSBundle mainBundle] ...
3
votes
1answer
66 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
vote
1answer
145 views
iOS App crashes on startup without showing any errors
I understand that there are others that have this problem, and I have looked at a ton of posts with this problem but still can't figure out why my app keeps crashing. I just don't understand what is ...
0
votes
3answers
81 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 ...
0
votes
1answer
125 views
Crash / Memory Warning when taking a picture - iPhone
I am getting a memory warning and the app is crashing during the time when a photo is taken with the iPhone. Not sure how to address this because the code that opens the camera works - and the code ...
0
votes
1answer
130 views
iOS - UIImageView animation memory leak?
I am currently using a UIImageView to animate a series of images depending on a button pressed by the user. I have about 5 different sets of images, that i have created in NSArrays, such as this:
...
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 ...
0
votes
1answer
35 views
Instruments showing a leak but no Object
I can see a Red line below in Leaks, but nothing in the call tree. AM I doing anything wrong?
-3
votes
2answers
105 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 ...
0
votes
1answer
127 views
How to access iOS device (iPhone/iPad) memory statistics?
How do we access device memory statistics programmatically? Suppose I want to know whats the devices total memory capacity is. For example, whether it's 16GB, 32Gb or 64GB, and how much has been ...
0
votes
0answers
225 views
how to solve memory iOS App Crashes?
Last week I sent an app to iTunes Connect. All seemed to work fine, the app passed the Xcode validation after archiving, it did not (and it does not nowadays) crash on any point I tested.
For my ...
1
vote
1answer
181 views
iphone phonegap google maps memory warning
I have an app written in Cordova (Phonegap) 2.3.0.
I use Jquery 1.8.2 and jquerymobile 1.2.0 and google maps v3.
XCode version 4.6
On one page I load a bunch of coordinates and creates different ...
0
votes
1answer
58 views
iphone ansi c : pointer being freed was not allocated
I am using a c lib in my iPhone application. The c lib is written by someone I do not have access to.
However I am getting the error that object 0xa6000d is being freed but not allocated. The debug ...
0
votes
2answers
63 views
Deallocate the presenting/previous view controller
My app has a login page, then a main page. I want to deallocate the login page when user logs in, and since main page is heavy, I obviously want it to be deallocated when I log out and go to login ...
0
votes
0answers
71 views
iOS - Memory consumption - how?
What is the way of memory consumption in iOS? Like, if I display a JPG image to screen whose size is 5 MB, will the memory consumption increase by 5 MB? Does Instruments display linear, simple ...
0
votes
0answers
38 views
Real memory and Live bytes [closed]
What is the difference between real memory and live bytes in iOS?
Does Android have Live bytes concept? If so, what is it?
What is the difference between Real memory and virtual memory?
1
vote
2answers
116 views
UITextView don't release with ARC
I have one more hypothetical question.
I create function:
-(IBAction)text:(id)sender{
UITextView * textview = [[UITextView alloc]initWithFrame:CGRectZero];
}
and because I use ARC I expected ...
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, ...
1
vote
1answer
104 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 = ...
0
votes
0answers
67 views
Crash on adding more memory usage in ios
I am connecting to our server and in the response i will get around 550 KB data. I am adding this response to local database file. After writing the data to DB, i will go to next view controller. I ...
0
votes
1answer
32 views
heapshot shows memory increase but give me nonsense backtrace
Here is the screenshot of heapshot. Everytime I swipe to the next page in the app, I did mark heapshot in instrument:
There're many s of 304 bytes exists in memory and make memory increase. The ...
1
vote
2answers
32 views
Is there something wrong return UITextField object like this in ARC mode?
I use ARC in xcode and write the convenience method like this:
+(UITextField *) addTextField:(NSString *)text x:(int)_x y:(int)_y width:(int)_width height:(int)_height {
UITextField *v_txt ...
0
votes
0answers
47 views
Master-Detail app, what's the best way to refresh detail view when master item changes?
I have a master-detail app for iPad.Currently I use the simple method to do master-detail interaction. When master item changes, the detail view refresh everytime as this in MasterViewController:
- ...
0
votes
4answers
49 views
How to deallocate all memory used by my iPhone application if application crash unexpectedly? and where?
I am beginner in iPhone App Development. Sorry for silly questions.
Consider a case that if my application crashes without any warning then all the memory allocated by my application will be freed ...
1
vote
2answers
417 views
Memory warning and app crash when downloading images
I am using SDWebImage library, images are around 0.5 MB and displayed in detailView when clicked on UITableViewCell.
Code from detail view:
- (void)configureView
{
if (self.imageURL)
{
...
0
votes
3answers
257 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
2answers
55 views
Using instruments to find overflow of the stack in code
As Documents say, allocations give a heap analysis of the memory.
However, what I feel is my app is crashing because of storing a lot of data on stack, which might be overflowing.
How do I analyze ...
0
votes
1answer
93 views
iOS save/retain data where didReceiveMemoryWarning (Equivalent Android Bundle onSaveInstanceState)
My question is simple. When do I receive Memory Warning, Where I should save or retain data or states in order to retrieve in viewDidLoad()?
For example, I got a view with a TextField, the user write ...
1
vote
2answers
149 views
Coverflow crashes on loading high resolution images
I am trying to implement a Coverflow ( iCarousel ) with AsyncImageView ( https://github.com/nicklockwood/AsyncImageView ) as cover. It works well with images of size upto 4 MB. But the app crashes ...
0
votes
2answers
77 views
autoreleasepool inside a method on ARC
I am wondering if there's any benefit of using @autoreleasepool on an ARC code inside a method.
I mean this. Suppose I have a memory intensive method that is called several times in sequence. ...
0
votes
1answer
72 views
Deallocate javascript on uiwebview?
is there way to deallocate the javascript after used in uiwebview.
what i understand was the iOS will execute the app when javascript didn't finished within 10 s and when memory get 10 MB limit.
Can ...
0
votes
1answer
36 views
iphone iOS memoryWarning handle for navigationController and ALAssetlibrary
I do resizing for FullReoslutionImage, so it may introduce memorywarning from iOS.
When I recieved memorywarning, it sometimes unload my ALassetlibrary for album, and it introduce crash when users ...
0
votes
2answers
694 views
iPhone iOS's image resize for lowest memory usage solution
I'm suffered from resizing image from original resolution image, which is about 8MP, my output resolution is about 2MP.
Sometimes, it show memory warning for iPhone4S device, and I did some release ...
0
votes
3answers
497 views
Message sent to deallocated instance on device only
I'm at a complete loss with a memory bug. This issue only happens on the device and not the simulator. It also only happens when the app is loaded for the first time on the device. If I close the app ...
2
votes
1answer
130 views
Multiple instances of the same TabBarController after Modal Segue iOS
I have an app with one main TabBarController containing two tabs that control two different views, A & B. View A is a scrollView and View B is a TableView. When i initially load the app, the ...
0
votes
0answers
143 views
Right way to release video
In the last app that i'm developing i have to use some video as background of my UIView.
So, i create the video as .mp4, import the framework and write in the app this code (i write here just the code ...
1
vote
1answer
522 views
Memory clear with SDWebimagemanager iOS iPhone
I'm very disappointed , it's been over a week since I have this problem of memory and I can not find a solution.
My app uses a lot of high-res photos from facebook.
I use SDwebimageManager to ...
3
votes
3answers
274 views
When is didReceiveMemoryWarning actually called
I've never personally seen didReceiveMemoryWarning called before. Is there a known threshold of memory usage where it gets called?
1
vote
1answer
132 views
UITableView Dynamic vs. Static Cell Allocation Performance / Memory Usage
Could anyone tell me the tradeoff in performance/memory usage between using static and dynamic cells in a UITableView?
Here's my situation: I have a TableView with 6 different sections. The first ...
0
votes
2answers
78 views
iPhone Dev - Memory Management in viewControllers
In my app I have a number of viewControllers and in the - viewDidUnload method of these views I've put pretty much all of my variables like the buttons, strings and arrays in that I used in that view. ...
0
votes
1answer
224 views
Memory warning and crashing app - can't find source of issue
My app is constantly crashing after receiving many memory warnings. It is almost thirty thousand lines of code long so it is not easy to track the problem. I have run it through instruments and there ...
1
vote
2answers
120 views
Memory leaks in CoreMotion
Following is my code in vievDidLoad
CMMotionManager *motionmanager = [[[CMMotionManager alloc]init]autorelease];
NSString string1 = [NSString stringwithFormat:@"%s", ([motionmanager.isGyroAvailable} ...
1
vote
0answers
410 views
Releasing MkMapView Memory
Is there any way to release the memory taken by an MKMapView on the iPhone ?
my MkMapview seems to take around 2megs in overall memory (as seen in Instruments/Memory).
This memory is not released ...


