Automatic Reference Counting (ARC) is a compiler feature that provides automatic memory management of Objective-C objects.

learn more… | top users | synonyms (2)

1
vote
0answers
32 views

What are the rules that affect __weak variables in a block with regard to GCC_OPTIMIZATION_LEVEL?

In the code below, when I run it with the GCC_OPTIMIZATION_LEVEL set to None, execution works as I expect and it prints the following to the console: My Obj - SomeObj However, when I set the ...
1
vote
2answers
18 views

Remove code with Xcode search

I just went over to the ARC in my iPhone/iPad app and it works great, but I have this code in the files that are shared with other projects #if !__has_feature(objc_arc). For example: - ...
0
votes
0answers
23 views

Reusing sprites when using a lot of them

I am in front of a problem when adding sprites on my game layer. When the game starts it's initialize a two dimensional array (that I created) and put 30 sprites in it (5 columns, 6 lines). It's ...
1
vote
0answers
40 views

iOS 5 with ARC - Avoid memory crashes

I am almost done programming a fairly large app which does a lot of talking with a backend, has a lot of caff sounds and displays several animations using sprite sheets. Every XIB files is connected ...
0
votes
0answers
17 views

Three.js 3D arc with varying height

I've had a decent amount of experience with WebGL, but I'm now just learning Three.js. I have a unique 3d shape I need to make in Three.js akin to a 3d arc. The bottom surface of the arc should be ...
0
votes
1answer
28 views

Strange issue with blocks and references

I'm using the Sparrow framework (V2) and I'm having a very strange issue which might be something to do with Sparrow or it might be something to do with Obj-c. I'm using ARC for the project. I'm ...
0
votes
1answer
31 views

XCode: potential leak of an object stored into 'cgImage'

I am getting a " potential leak" warning when I run Analyze. It's related to the line below. I am using ARC, though I understand that a CGImage is not released under ARC. textureColor = [UIColor ...
1
vote
1answer
73 views

Effects of turning off ARC in iOS app

I am trying to use a framework which does not use ARC and it seems that I have to turn this feature off before I can use it. My question is, what are the potential ramifications of doing so? If I turn ...
-1
votes
1answer
63 views

NSMutableArray not being modified properly when manipulated in other class [closed]

I have an NSMutableArray as a property in a view controller class, and this line is being used in two other classes. One of the classes manipulates the array (adds more objects to it) and another just ...
1
vote
4answers
90 views

Random EXC_BAD_ACCESS when adding subview with ARC

My app is working perfectly on the simulator but when I test the app on the device I eventually get a random EXC_BAD_ACCESS and the app crashes. After a few days of testing I think I have found the ...
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 ...
-1
votes
3answers
40 views

So many errors occurred when I using the ARC convertion tool

I have a project previously built in iOS 4.3. When I tried to invoke the “ARC” conversion tool with Edit > Refactor > Convert to Objective-C ARC from XCode 4.5.2, the tool reports many errors. ...
0
votes
1answer
68 views

Automatic Reference Counting is not releasing calloc

I am using ARCin my application, for encoding the string i am usingcalloc` while i am running the app in profile it shows an memory leak at calloc. whether ARC will release calloc or not? if no, ...
2
votes
2answers
77 views

Understanding ViewController dealloc process

I have a container UIViewController which does the following when removing one of its children: - (void)removeChildWithIndex:(NSUInteger)Index { @autoreleasepool { ChildViewController *child = ...
1
vote
2answers
46 views

multithread autorelease issue with ARC?

A class of service has a nonatomic property which is set in a serial queue. @interface Service @property (strong, nonatomic) NSDictionary *status; @property (nonatomic) dispatch_queue_t queue; ... ...
0
votes
1answer
33 views

ARC from strong - to - strong

I would like to know the correct approach here under ARC. I have strong NSArray(custom class Objects of my own) @property inside a controller and when I am init another controller I have to pass just ...
-1
votes
0answers
14 views

BlackBerry Android Arc Menu [closed]

how can develop menu like the below link in blackberry, or where you can find like this menu https://github.com/daCapricorn/ArcMenu thanks
0
votes
0answers
9 views

Drawing a curve with given two points and radius in C#

How can i draw in windowsform a curve/arc with given only two points and a radius. there is a way with intersection of two circles with the radius. is there an easy way that can i draw it with ...
2
votes
0answers
37 views

Which __bridge toll free bridging should I use for casting an Objective-C convenience constructor into a C ref?

I'm trying to convert manual retain release code to ARC. I'm struggling to figure out the correct way to toll free bridge when I have an Objective-C convenience constructor whose return pointer ...
-2
votes
0answers
67 views

Google maps iOS SDK 1.2.2 refresh bug [closed]

we are currently working with google maps, because iOS maps didn't fit our requirements. The problem is the maps always crash after a certain event, typically after 10 minutes of continuous use and/or ...
0
votes
1answer
43 views

Obj-C: EXC_BAD_ACCESS strange error with ARC

So I have a WebView inside a custom NSObject subclass called GoogleLinkFetcher and what I do is load a request from the webview and in webView:didFinishLoadForFrame: I call self to call a method on ...
-1
votes
2answers
177 views

Using ARC library in non-ARC project [closed]

ARC technology isn't being used in my project. I'm trying to add SBJson library to it. I set -fobjc-arc flag for all files which have SBJson prefix, but during compilation process ARC semantic issue ...
-5
votes
2answers
62 views

iOS App Crash when removing all objects from nsmutable array? [closed]

I am unable to understand what mistake is done by me, when I am trying to remove all objects from mutable array.My project is ARC enable my code snippet self.arrMonthHas = [[NSMutableArray alloc] ...
0
votes
1answer
34 views

does setting an object to nil with ARC cause a release of its properties

If I set an object, say a view controller to nil, will its properties like buttons and labels also get released under ARC? What happens in case the properties are of type strong and assign? Also, when ...
0
votes
1answer
37 views

App crash on addsubview when enable ARC

When I used tradition function [self.navigationController pushViewController:viewcontroller animated:YES]; or [self presentModalViewController:viewcontroller animated:YES];, Everything is ...
1
vote
2answers
82 views

Why can't I have property named 'retain' when using XCode?

In XCode 4.6.2 ARC, if you have some property in a class named 'retain', either the IDE or the compiling stack will do something funny, making the class can't be used in the usual pattern: [[MyClass ...
3
votes
1answer
78 views

Explanation of weak self assignment using __typeof

I found an odd line of code in the REActivityViewController project on GitHub and cannot understand it. It appears to avoid casting the value to the exact class that it is declared as, but I do not ...
0
votes
2answers
38 views

If custom UIView has >1 sublayers, app crashes on touchesBegan, why?

I have a few custom UIView objects that all handle drawing like this: - (void)drawRect:(CGRect)rect { // ^ I init the layers 1 and 2 [self.layer insertSublayer:layer1 atIndex:0]; // 1 or more ...
0
votes
1answer
18 views

Registering created object in outer @autoreleasepool block and strange __weak pointer behavior

Code: @autoreleasepool { id __autoreleasing obj = nil; @autoreleasepool { obj = [[NSObject alloc] init]; _objc_autoreleasePoolPrint(); } ...
2
votes
1answer
87 views

ARC blocks, weak and retain count

I thought that I had quite understood weak references and blocks, however when trying the below code snippets, there are a few things that I don't understand. Method test1: all fine the object is not ...
0
votes
1answer
89 views

Is fast enumeration exception-safe in files compiled with -fobjc-arc-exceptions?

I'm considering using exceptions for internal error handling inside a library I'm writing. If they are used, the library will be built with arc and f-objc-arc-exceptions enabled. One issue with obj-c ...
0
votes
0answers
47 views

Why variable with __weak qualifier and __bridge cast retains an object? [duplicate]

I have following code: int main(int argc, char *argv[]) { void *pointer = NULL; @autoreleasepool { NSMutableArray *arr = [[NSMutableArray alloc] init]; pointer = ...
4
votes
1answer
75 views

Why does ARC autorelease when using weak references?

Why can't ARC use a regular release? Example: [weakObject doSomething]; From what I understand, ARC turns this into: Object *strongObject = objc_autorelease(objc_loadWeakRetained(weakObject)); ...
1
vote
1answer
41 views

Using methods from non-ARC libraries in an ARC project?

I am using the excellent, however, non-ARC project: https://github.com/boredzo/iso-8601-date-formatter I am trying to use the following method from this library which is non-ARC in an ARC project: - ...
0
votes
1answer
16 views

Initializing 'ABMultiValueRef *' (aka 'const void **') with an expression of type 'CFTypeRef'

I get following warning under ARC: Initializing 'ABMultiValueRef *' (aka 'const void **') with an expression of type 'CFTypeRef' (aka 'const void *') discards qualifiers. on line ABMultiValueRef ...
3
votes
2answers
73 views

After ARC, in what ways you can still refer to a deallocated object by mistake?

Is it steal possible? I mean weak pointers are automatically nulled. Strong pointers only deallocate when pointed somewhere else. Can we still have an error of pointing to deallocated objects? ...
0
votes
1answer
35 views

Why does VerificationController crash inside of didReceiveData

Here is the function where it crashes. The exact line of code is the one with: removeObjectForKey. Even when the test function is completely empty it crashes on removeObjectForKey. Note: I'm just ...
0
votes
3answers
69 views

ARC Semantic Issue: No Visible @Interface for 'UIViewController' declares the selector 'loginResult:'

I have made lot of googling about the Title above but could not get the solutions I want. I have a project with ARC that uses a static library for service calls. When click login button credentials ...
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 ...
0
votes
2answers
22 views

In Objective-C ARC, what are “BPTRs declared within extern ”BCPL“ blocks”?

In the Clang documentation for ARC, it says: ARC applies to Objective-C pointer types, block pointer types, and [beginning Apple 8.0, LLVM 3.8] BPTRs declared within extern "BCPL" blocks. ...
2
votes
2answers
63 views

Setters and Getters on ARC environment

I am still learning some nuances of CocoaTouch. What kind of getters/setters are generated internally for types like float, int, etc., on an ARC environment? I know that if the property is an object ...
0
votes
1answer
14 views

What is the main difference using “copy” and “strong” ownership qualifiers in property declaration with block types?

Example #1 @property (nonatomic, copy) void (^errorBlock) (NSError *); Example #2 @property (nonatomic, strong) void (^errorBlock) (NSError *); I know that blocks are standard variables on ...
0
votes
0answers
55 views

In XCode 4.6.2, why does creating an outlet on a UITextView auto-generate a viewDidUnload method

I have a simple "About" view that I've made in a storyboard. Basically all it has is a UITextView. It's controller looks like this: // AboutViewController.m #import "AboutViewController.h" ...
0
votes
1answer
24 views

upgrading to Automatic Reference Counting and cleaning up my code

I have a project from 2 years ago that I'd like to bring back into action in xcode. Is there a simple way to do away with the old style memory management I have in there with retain/releases and use ...
1
vote
2answers
94 views

override retain/release under ARC

I have an ARC enabled application that using a MRC(non-ARC) static library. In the static library, retain/release are overridden to provide some custom weak ref/cache behavior ([super retain/release] ...
0
votes
1answer
55 views

How to pass NSObject from one view controller to another

I am using iOS 5 SDK with arc. I want to pass NSObject from VC1 view controller to VC2 view controller, do modification and put back into VC1 controller. I don't want to point same nsobject from both ...
0
votes
2answers
53 views

NSDictionary dictionary vs init alloc vs new

Suppose I want to, for example, start creating key/value pairs using an NSMutableDictionary. I then seem to have at least three options for creating an empty, mutable dictionary with an unspecified ...
0
votes
3answers
76 views

Keep object reference of local variable in ARC

I have created a class under ARC with some methods that accepts blocks. The problem is app keep crashing, and I think the reason of crash is the object is getting released by ARC. My question is, how ...
0
votes
1answer
58 views

Updating a UITableViewController with tab trouble, dealloc with ARC?

I am stumped with a situation I'm currently working with developing an iOS app. It involves updating the content on a UItableviewController I'm accessing via a tab. Within a configureView method of ...
1
vote
3answers
112 views

Why is Objective-C ARC deallocation dependent on whether an object was created in function?

I'm learning about ARC memory management and ran across something that doesn't make sense to me. In the example code below, an object that is allocated locally in main() gets deallocated when its ...

1 2 3 4 5 42