Tagged Questions
1
vote
0answers
21 views
iOS Instruments: Memory/CPU activity with associated threads
Instruments provides tools to see threads, activity of I/O, DB, network etc. But I have come across a situation where I need to see the influence of a thread i.e. CPU/Memory use that its causing.
I ...
-2
votes
2answers
109 views
Instruments not showing Responsible Library
I am running instruments to analyze memory leaks in my application,
but it does not show any responsible libraries for any allocations:
Neither it shows any methods/variables in stack trace, it ...
0
votes
0answers
67 views
Interpreting the Time Profiler Instrument [closed]
I am using the Time Profiler Instrument to enhance the performance of my app. I know how to work the Time Profiler, and have filtered the Call Tree checkboxes to show information pertinent to the app. ...
0
votes
1answer
127 views
Dirty Size on iPhone app
How to minimize Dirty Size on iPhone app? I released my cache image but don't minimize Dirty Size. Someone have more tips?
Thanks!
0
votes
1answer
161 views
Having custom logs on instruments iOS stdout from automation script
I am automating my tests using the instruments CLI.
Now, the tests require starting another process once some specific action in my app is completed.
i.e lets say the application does
singin --> ...
0
votes
2answers
223 views
use xcode to instrument/profile third-party app
Is it possible to use Xcode Instruments to profile a third-party app? Right now, whenever I trying to profile any third-party app installed on device, I got error saying
'Target failed to run: ...
8
votes
3answers
422 views
Xcode Instruments unable to take snapshots of leaks when running on device
Recently I have not been able to test for leaks with Instruments when running apps on a device. Instruments will attempt to take a snapshot but the status will freeze at "Analyzing Process". At first ...
0
votes
1answer
2k views
new in using XCode Instruments to interpret memory warning for iPhone development, guidance needed
I am working on an iPhone game which receives memory warning that I am not experienced enough to interpret. I have been watching some iTunesU tutorial but I am still not very good at this..
I have ...
-3
votes
1answer
591 views
Xcode - Iphone Memory limitation
What is the maximum memory one application can use? Please find instrument screenshot with this message. What is this real memory and virtual memory limitation?
0
votes
1answer
106 views
Ambiguity in XCode's Memory Leak Instrument TimeLine
In the following image (taken from Memory Leaks Instrument in Xcode), you will notice a memory leak (the one with green border) in the timeline, how do i know which leaked object(s) that caused this ...
1
vote
2answers
203 views
How to fix memory leaks for an autoreleased object
I have this method which leaks ~ 6KB :
+ (EInspectorFacilityInfo*) newWithNode: (CXMLNode*) node
{
if(node == nil) { return nil; }
return (EInspectorFacilityInfo*)[[[EInspectorFacilityInfo ...
0
votes
1answer
224 views
Instruments UI Automation tests for iPhone app
I'm a newbie in UI Automation using instruments and I have the following question:
- the application starts and I get the mainWindow screen (which contains SignIn and Register buttons)
- I've ...
0
votes
4answers
515 views
How can i find CPU Sampler in xcode 4.3?
I want to use the "CPU Sampler" in my Project for The CPU Measurement but i can't find it. I'm using XCode 4.3
1
vote
0answers
414 views
Application is crashing when running with instruments
Hi Everyone ,
My application is running fine in iPad. but when i am running app using instruments time profiler, its getting crash .
What may be the reason?
I saw some help like
...
1
vote
1answer
160 views
Instruments giving a weird error, when testing on device
I am trying to run Instruments in my iPod (iOS 5.0.1). The settings for the project are correct, I am running in debug mode, and have installed a developer profile. But whenever i run instruments, i ...
1
vote
2answers
223 views
How to remove memory leaks caused by other library?
In my application i am using one library that directly returns me the result of sql queries in NSMutableArray.When i am using instrument then it shows me memory leaks for the array in which result is ...
0
votes
2answers
237 views
Xcode/Instruments/Leaks: can it show a red line where apparently there is no leak?
What the program is doing is simply allocating an object and then releasing it.
I'm new to Instruments so I'm not sure I'm interpetingh this right:
The red line suggests there is a leak at the ...
3
votes
1answer
845 views
uiautomation recorded scripts save location
I can't seem to figure out how to save recorded scripts in the "UI Automation" tool in Instruments.
I launch my iphone app with "Profile" select the "UI Automation" tool, add a "New Script" and start ...
2
votes
1answer
1k views
IPhone App Memory Keeps Growing
I was all ready to submit my first app to the app store. Checked for leaks, tested on devices, the works. I wanted to make sure my memory was under control so I ran allocations, and, alas, nothing ...
0
votes
1answer
712 views
detecting errors and solution for it- Xcode 4.2 - Instrument [Memory Leaks]
According to stack-over flow guidance I did my memory management things. SO I discovered memory leaks. thanks for all about it. Now how could I find memory allocation that I didn't release ?
Is their ...
0
votes
2answers
156 views
NSAutoreleasePool leak in Instruments
I do apologize if this have been asked before but i have not found a good answer.
When i run the Instruments i get a leak on this line in the code, not in main:
NSAutoreleasePool *pool = ...
2
votes
1answer
3k views
UIImagePickerController mediaTypes kUTTypeMovie causes small memory leak in NSCFNumber
Xcode 4.0.2
iPhone4 iOS 4.3.5
CoreLocation and MobileCoreServices frameworks are implemented.
imported MobileCoreServices/UTCoreTypes.h
- (void) displayVideoPicker
{
UIImagePickerController *ipc ...
-1
votes
3answers
540 views
Guidelines to create a framework for iPhone UIAutomation tool
Can some body share your thoughts to create a framework using iPhone UiAutomation tool (Instruments)
12
votes
1answer
3k views
What does the DTMobileIS mean for?
When I used Instruments tool to monitor my memory usage, I found a process named DTMobileIS use about 40% of real memory, and then there were not enough memory for my app so it crashed. I am curious ...
1
vote
1answer
658 views
iPhone: Using Instruments to detect current memory usage?
I am using Instruments to track memory for my app. I see it gives me a count of the # of allocated pages. However, I hear this number almost always increases and isn't a true count of the current ...
1
vote
1answer
155 views
Analyzer Results vs Leaks by Instruments : iPhone memory leaks
I fixed memory leaks of my application using
X-Code->run with performance tool -> leaks
I submitted my application and later I analyzed my code attaching to device like Build & Analyze for ...
0
votes
2answers
174 views
How many FPS is good for a non gaming iphone app?
I tested my app with instruments:
When scrolling table views, it's around 20-50 fps, (more like 25 average). Is that good enough? I've reused the table view cells and did quite a lot of ...
0
votes
0answers
720 views
Is there any update on UIAutomation in iOS5? [closed]
Is there any interesting update in UIAutomation on iOS5 ? Like so many iOS unit testers, I am waiting for Automating test script selection and stopping the script after test run. Any updates on this ?
...
7
votes
1answer
954 views
UIAutomation Nested Accessibilty Elements Disappear from Hierarchy
I have a view with two subviews a button and an Image, I turn on accessibility and set the label on the subviews and I can see the hierarchy by calling
...
2
votes
1answer
318 views
What commands are valid in “console pane” of Mac's “Instruments” app? (E.g., in Instrument)
I'm running the Mac OS "Instruments" app, using the "Leaks Instrument" to monitor an
iPhone app. The major pane is titled "Leaked Blocks", but if you click on that you
get a choice of three: "Leaked ...
18
votes
2answers
4k views
instruments with iOS: Why does Memory Monitor disagree with Allocations?
As can been seen in this screen shot from instruments, Allocations thinks my application (Ongo) is only using 7.55 MBs of memory, while Memory Monitor says 53.30. Further more the free system memory ...
