Tagged Questions
0
votes
3answers
59 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
0answers
30 views
UILabel gets null IOS 5.x and ARC
I'm developing a master detail app for an iPad and I'm getting some trouble.I'd like to know why my UILabel named "etiqueta" gets deallocated after being initialized .I'm using IOS 5 and ARC code.Here ...
0
votes
0answers
26 views
IOS 5.0 preference over IOS 4.0 [closed]
My xcode project is running with deployment target 4.3 and was with Non-ARC project. To improve the memory usage and proper allocations, I converted the project into ARC project. Now, I am running the ...
0
votes
2answers
45 views
Scroll down crashes application on a UITableView with a custom UITableViewCell because of zombie object
I have this code:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *simpleTableIdentifier = @"BSTGListCell";
...
-1
votes
1answer
24 views
Navigation Controller dealloc
I am having a doubt regarding the behaviour of dealloc in ARC in Nav bar applications.I have a nav bar application in which 5 screens are there.I am pushing the view controllers in the navigation ...
2
votes
3answers
123 views
ARC in iOS 6 versus in iOS 5
I am new to ARC. My issue is that if we create a strong type property on a view controller, we need to make it nil once the navigation controller's popViewController happens.
Normally, we would do ...
-1
votes
2answers
56 views
arc forbids synthesizing a property of an objective-c object with unspecified storage attribute.(Look At Below)
i tried hard to solve arc problem when i declared property.
@property (readonly) NSMutableDictionary* activeTransfers;
@synthesize activeTransfers;
When i declared Property then i got an ...
0
votes
0answers
11 views
How i can show value in textfield in FirstClass( ReservationBook) from tableviewCell selected value in second class(AddressFile)
Hi i am try to show value in textfield in FirstClass(ReservationBook)from selected value in TableViewCell from SecondClass (AddressFile).
when i am doing NLog i got it but it not show value in ...
3
votes
1answer
136 views
Xcode suggests to replace %C with %d [duplicate]
Possible Duplicate:
Format specifies type ‘unsigned short’ but the argument has type ‘int’
I am using the NSString Html category at ...
1
vote
3answers
122 views
Should i use nil in ARC
I have read lot of articles but when i did practically i think i am missing out something.
I have an application in which i am setting a singleton object for module which presents over other view ...
0
votes
2answers
85 views
Getting Leak in ARC
I have a singleton object that is a module of my application and all objects created within this module has no relationship to any other module.My application creates this singleton object and this ...
1
vote
1answer
107 views
childViewController not getting deallocated after removing from parentViewController
I'm adding a child view controller as follows:
loginViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"LoginViewController"];
loginViewController.delegate = self;
[self ...
0
votes
1answer
105 views
Game Center with iOS 5 SDK - leaderboardDelegate = self not working
I am still using iOS 5 SDK and Xcode 4.2 (Snow Leopard). I am adding Game Center to my game and while it passed authentication I get an ARC error whenever I try to show a leaderboard with this code ...
0
votes
1answer
55 views
Ad Network that is ARC compatible
I am looking for an AdNetwork that is ARC compatible, I tried to use AdWhirl but it is not compatibile.
Ideally I am looking for a service like AdWhirl which incorporates different networks into ...
0
votes
1answer
60 views
arc with navigation delegate error property delegate not found on object of type viewcontroller
I'm hoping someone can shed some light on my question below.
I'm getting a property delegate not found on object of type viewcontroller error on when I declare the delegate in the parent view:
...