Instruments usually refers to the performance analysis developer tool provided by Apple for Mac and iOS development.

learn more… | top users | synonyms

0
votes
0answers
7 views

Xcode instruments not able to profile my app after I changed the bundle identifier

Currently instruments is not able to profile my app after I changed the bundle identifier. I changed the Bundle Identifier from com.company.Myapp to com.company.myapp, to match my app profile in ...
1
vote
1answer
29 views

Test memory leak by instruments of Xcode

Can I use Xcode instruments to test memory leak of a C++ command line tool? I tried to do so, and I cannot find a console to use cin. However, for a iOS app, there will be a simulator so that we can ...
0
votes
2answers
30 views

iOS App Memory profiling

I've got an issue with my iOS app getting exponentially slower to respond to tap gestures. It's an alphabet game so cycles through a list of 26 pictures. Using instruments, it looks like the memory ...
0
votes
0answers
8 views

UIAutomation in instruments, screenshot organized in folders possible?

I have a question about screen capture with UIAutomation in Instruments. Is it possible to take screenshots and organise them in separate folders? I have an app with different section, and using ...
1
vote
1answer
42 views

How to see what started a thread in Xcode?

I have been asked to debug, and improve, a complex multithreaded app, written by someone I don't have access to, that uses concurrent queues (both GCD and NSOperationQueue). I don't have access to a ...
0
votes
2answers
83 views

Memory Leak in iOS application - ARC

I have a hard time figuring out, where my app is leaking. I have tested it with the "Instruments" profiling application by allocations, with heapshots. This is what I got: As you can see, the ...
0
votes
0answers
42 views

CFData (store) increases upto 200MB when downloading images throughout NSData -initWithContentsOfURL in Background thread

Im using NSData -initWithContentsOfURL in a background thread to download some 4k images. I can see in Instruments that my CFData (store) keeps growing and goes upto 200MB (at which point btw I crash) ...
0
votes
1answer
38 views

Correctly releasing returned UIImage

I call the following method to get an image which I display in a UIImageView. When I am done with the UIImageView I release myImageView.image. I am happy with how I do this but Instruments is showing ...
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
vote
0answers
21 views

Can Instruments be corrupting memory?

As I move my next version of my app closer to submitting to the store I run a leak check on it using Instruments. On all of my test devices (iPod touch, iPhone, iPad; different OS levels, etc.) all ...
0
votes
2answers
49 views

How to fix this Memory Leak issue?

Consider the following function -(NSMutableDictionary *)readingDictionaryFromFile { NSMutableDictionary *temp; paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, ...
0
votes
0answers
49 views

iOS: How can I quit an running app on a device through command line from a host Mac

I can deploy and run an app on an iOS device via Xcode and Instruments. But what about stopping it from the Mac where I run Instruments? When I look at the instruments CLI manpage I can't seem to ...
0
votes
1answer
21 views

Instruments: Can I run an iOS App using Instruments command line mode?

I read from this question: Can the UI Automation instrument be run from the command line? that we can test simulator builds with instruments command line. But I cannot find info about whether or not ...
0
votes
0answers
48 views

Memory leaks with “weak” and “strong” attributes

Using LRResty for all api calls on one of the project I work on. I have noticed the project leaks memory a lot, so I have been given work to fix all the leakage and improve stability of the current ...
0
votes
0answers
19 views

How to know a process is completed in UIAutomation

I m new in UIAutomation. I want to know how will I know if some process is completed in UI. Like I have a login screen and after Login successful I m fetching data from server and then one Alert is ...
0
votes
0answers
10 views

Do tagged pointer NSDates show up in Instruments' Allocations instrument?

When looking at my app with the Allocations instrument, I see a lot of NSDate instances listed. At first I figured there were a lot of them because in actual fact they're tagged pointers, and so I ...
0
votes
0answers
37 views

Issue with IOS Instruments running from command line on build machine

I've successfully run IOS UI Automation Instruments from command line on my local Mac. When it starts to test, the simulator will automatically pop up and then do the stuff. However, when I SSH to a ...
1
vote
1answer
35 views

“Show Obj-c Only” flag hides all the content of call tree on xCode Instruments

I'm following this tutorial about Instruments. The tutorial provides a sample project to test the steps described on it. The problem is that, when I check "Show Obj-c Only" and "Hide System ...
0
votes
0answers
23 views

Profiling I/O on iOS “No such file or directory” looking for extensions — should I be worried?

I profiled I/O activity on my app today. I noticed that iOS is checking for the various extensions that can be added to images, e.g. ~iphone. I don't use those extensions, or ones like only_, so each ...
0
votes
0answers
20 views

Delete cells in tableview - Automation testing UI using instruments

I have a table view. I want to delete cells in that tableview. Can someone explain how to do that ? this is my code but its not working var target = app.frontMostApp().mainWindow(); //enter edit ...
0
votes
0answers
29 views

Apple Instruments - Counters - Source unavailable

I've been running into a problem with Apple Instruments (4.6, Xcode 4.6.2 on 10.8.3). Normally when using the Time Profiler, I can look at my source and see the hotspots without any problems (same ...
0
votes
1answer
39 views

Match two strings in automation testing UI - iOS

I am writing automation test scripts using Automation tool in instruments for my iPad app. In the login screen, when user taps on login button without entering any information, I display an error ...
0
votes
1answer
55 views

MKMapView black screen

anybody have uncaught crashes using the native MKMapKit? We have an application with some maps to showing places or people around, if we access in and out the maps functionality repeatedly. And we ...
0
votes
0answers
29 views

Setting names for UITextFields for Automation testing using Instruments - iOS

When I log element tree, I can see that my buttons have names using which I can access them in my scripts. In my app, all text fields don't have names set up. I tried setting up names for them using ...
0
votes
0answers
59 views

Automation testing UI using Instruments - iOS

I have an iPad app and I am writing automation tests for it. I tap on mainButton and it opens up a view controller. This view controller has UICollectionView in it with two cells. Each of the cell has ...
0
votes
1answer
30 views

Tutorial for creating custom Instrument in XCode

I want to create my own custom Instrument in XCode. Unfortunately, I can't seem to find any Tutorial; the only help I found is the manual, which is in my opinion hardly self-contained. Does anyone ...
1
vote
1answer
78 views

UIAlertView memory issues

I have created a very simple iPhone application, with single view and a UIButton with action to show UIAlertView. I am using following code - (IBAction)showAlert:(id)sender { UIAlertView *alert ...
0
votes
0answers
25 views

Zombie Messaged

Debugging an app with Instruments and the Zombie template I get the Zombie Messaged popup which says: An Objective-C message was sent to a deallocated object (zombie) at address: 0xd220050. ...
0
votes
1answer
7 views

Readings in allocations profile

I am a little bit confused about the the readings in Instruments when I test my app with Allocations profile. The app loads pictures, then resizes them and saves in the model already small pictures. ...
0
votes
0answers
24 views

Discrepancy between Live Bytes shown by Allocations instrument vs task_info() function

In my app the Live Bytes shown by Allocations Instrument are far different than what task_info function returns. In Allocations Live Bytes do not go above 4-5 MB but task_info() can go as high as ...
1
vote
1answer
33 views

Core Animation Instrument for Mac OS X?

For tuning the performance of an application, the Core Animation Instrument is a very useful tool for iOS developers. The layer colorization helps find potential bottlenecks quickly, and getting an ...
0
votes
0answers
25 views

Xcode 4.2 Instruments CPU/Activity probes empty (on Snow Leopard)

Trying to debug a random CPU load situation on a snow leopard server by recording CPU load. Downloaded Xcode 4.2 from developer.apple.com and tried running activity monitor or CPU monitor in ...
0
votes
1answer
59 views

App Crashing on Simulator and Device but not when Profiling

The app crashing with signal SIGABRT (the debugger output is child already added. It can't be added again) in the simulator and on the device. Runs fine when I profile the app in Xcode while running ...
2
votes
0answers
28 views

most representative allocations metric for checking app memory usage

Recently I have been using Xcode instruments allocation to profile the memory usage of my app. There are a number of metrics, for example the heapshot analysis and live bytes amongst others. Which of ...
0
votes
0answers
19 views

Finding RefCt issue with view controller not calling dealloc with Instruments

I am trying to use instruments to discover why my View Controller does not call dealloc when popped from the navigation controller. In reviewing the allocations, I found that when I popped my view ...
1
vote
2answers
114 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
0answers
43 views

free is not happening and leads to memory overflow in ios

In ARC XCode application, it uses native C library. When the library functions are called continuously about 2000 times, the application stopped working on iPad device. The 'Instrument' showed that, ...
2
votes
0answers
86 views

100% memory leak in gcd block

I have an arc-enabled project which has PersonModel class: // .h @interface PersonModel : NSObject @property (strong, nonatomic) NSString *photoUrl; @property (strong, nonatomic) UIImage *photo; ...
1
vote
0answers
58 views

XCode, iOS: Allocations vs Real memory usage

I run my Instruments on my iPod touch 4th gen and notice that the real memory usage in the activity monitor starts from 60 MB (Introduction scene) and goes to above 100 MB (Main menu scene). Whereas ...
0
votes
0answers
31 views

My Cocos2d 2.0 game crashes when using Instruments on real device

I don't get why my App crashes on real device when using Instruments. Without Instruments attached to the APP process it doesn't. What are the most common causes for this? EDIT: I changed the Schema ...
0
votes
1answer
74 views

Xcode Instruments: valid provisioning profile not found

Whenever I try to test my current app with Xcode Instruments, two identical messages pop up: This only happens when I use instruments. A previous version of the app has already been accepted by the ...
6
votes
2answers
121 views

UIAutomation: Any way to dismiss “Would Like To Use Your Current Location” alert?

my app is using location services, and for automated testing I want to be able to dismiss the "APP Would Like To Use Your Current Location" popup. However when I try to do this in Instruments with a ...
0
votes
0answers
37 views

iOS - XCode Instruments interface

On OSX, XCode's Instruments profiler uses DTrace to gather data. DTrace is relatively well known and reasonably well documented. I could not find any information on what facility Instruments uses ...
0
votes
0answers
38 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 ...
2
votes
1answer
76 views

OpenGL ES apps appear to run MUCH FASTER when profiling in Instruments

I'm scared to ask this question because it doesn't include specifics and doesn't have any code samples, but that's because I've encountered it on three entirely different apps that I've worked on in ...
3
votes
1answer
92 views

Estimating memory usage of Cocos2d game

I am using Cocos2d 2.0 with ARC enabled. My game is a random generated game so I need to load/unload textures( spritesheet-batchnode) within a scene in the middle of the game. I am trying to ...
1
vote
0answers
111 views

XCode Instruments affection FPS with Core Animation

I am developing a game (on iOS in Cocos2d & Box2d). When I debug on my device (iPhone 5), I get between 35 and 50 FPS - but when I use Instruments and profile the Core Animation FPS, its always 60 ...
-4
votes
3answers
70 views

How could make this code better? [closed]

I used imageNamed but imageNamed will cache your image however, using imageWithContentsOfFile: to avoid caching. And using instruments i see that consume a lot of time. How could this better?
0
votes
1answer
180 views

Unknown reason to receive Memory Warning

let me come to issue fast. There is no problem in my code so far. My only concern is Memory management. Let me make my app logic clear. When App is launched globally NSmutableDictionary is declared ...
1
vote
1answer
54 views

Memory leaks testing

I'm doing memory leaks testing for our product with Instruments. std:string or std::auto_ptr objects are detected leaks. As I know, these two kinds of objects will release themselves. I'm wondering ...

1 2 3 4 5 21