Reputation: 29014
During a talk from WWDC 2012 (Best Practices for Mastering Auto Layout), the presenter said that you can set a UIView identifier in Xcode to aid in debugging auto layout:
This seems like a really good idea, but in Xcode 4.5.1 for my iOS project, there is no way that I can see to set the Identity of a UIView.
How can I set the Identity of a UIView in Xcode 4.5.1? If this isn't possible in iOS projects, how can I get the same functionality?
Upvotes: 32
Views: 16710
Reputation: 9136
Setting in code, worked for me:
code:
imageView.accessibilityIdentifier = "profileImageView"
output:
<NSLayoutConstraint:0x17028eec0 profileImageView.width == 40 (active, names: profileImageView:0x10fd48110 )>
Upvotes: 5
Reputation: 1561
Setting accessibilityIdentifier
on UIView
does the trick. Tested on Xcode 6.4, iOS 8.4.
Upvotes: 23
Reputation: 38025
Here is a handy trick you can do to aid in your AutoLayout debugging. You can add your own name
property to UIView
via a category, and overload its description
method to include your new name
. This doesn't quite give you a visible name in the AutoLayout debug info, but lets you easily po
a view from its address and see its given name.
Then just assign the applicable names in your view controller:
- (void)viewDidLoad {
[super viewDidLoad];
self.firstView.name = @"MyViewController.firstView";
self.secondView.name = @"MyViewController.secondView";
}
Now when you see something like this:
<NSAutoresizingMaskLayoutConstraint:0x175086220 h=-&- v=-&- UIView:0x147533250.height == UIView:0x14760b4a0.height>
You can just po
the view addresses:
po 0x147533250
MyViewController.firstView <UIView: 0x147533250>
po 0x14760b4a0
MyViewController.secondView <UIView: 0x14760b4a0>
Here's the category code:
UIView+Name.h
#import <UIKit/UIKit.h>
@interface UIView (Name)
@property (strong, nonatomic) NSString *name;
- (NSString *)description;
@end
UIView+Name.m
#import "UIView+Name.h"
#import <objc/runtime.h>
@implementation UIView (Name)
- (NSString *)name {
return objc_getAssociatedObject(self, @selector(name));
}
- (void)setName:(NSString *)name {
objc_setAssociatedObject(self, @selector(name), name, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}
- (NSString *)description {
return [NSString stringWithFormat:@"%@ %@", self.name, [super description]];
}
@end
Upvotes: 0
Reputation: 5357
Not quite the answer you were looking for, but what's helpful is doing something like this in the debugger :
expr [(UIButton*)0x12345 setBackgroundColor:[UIColor purpleColor]]
This helps identifying the view. Make sure to hit run on the debugger to see it take effect though.
Upvotes: 0
Reputation: 203
Seem like Identifier is only available on NSView in Mac OSX only. It's not available on UIView in iOS.
Find the bad constraint or constraints.
To get the constraints affecting a particular view, use constraintsAffectingLayoutForOrientation:. You can then inspect the constraints in the debugger. They are printed using the visual format notation. If your views have identifiers (see identifier (NSView)), they print out using the identifier in the description, like this:
As described in here: http://developer.apple.com/library/ios/#documentation/UserExperience/Conceptual/AutolayoutPG/Articles/debugging.html
Upvotes: 5
Reputation: 5225
Unfortunately, there doesn't seem to be any way of doing this. I have tried filling almost everything, and nothing worked. Neither restorationId, nor Accessibility traits have any effect on this. If you look at the screenshot you will see that actually he is setting a NSView, which does have the identifier property.
Upvotes: 2
Reputation: 1
Instead of Identifier
, use the Storyboard
ID field. It is the same.
Upvotes: -5