How to set the Identifier of a UIView in Xcode/iOS for debugging auto layout?

有些话、适合烂在心里 提交于 2019-12-03 22:14:21

Setting accessibilityIdentifier on UIView does the trick. Tested on Xcode 6.4, iOS 8.4.

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

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.

Setting in code, worked for me:

code:

imageView.accessibilityIdentifier = "profileImageView"

output:

<NSLayoutConstraint:0x17028eec0 profileImageView.width == 40   (active, names: profileImageView:0x10fd48110 )>

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.

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
Avishek Dasgupta

Instead of Identifier, use the Storyboard ID field. It is the same.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!