通过标准的Runtime API(C函数)打印UIKit中UIView的所有变量、属性以及方法

来源:互联网 发布:最准时时彩数据分析 编辑:程序博客网 时间:2024/06/05 04:22

Ivar:定义对象的实例变量,包括类型和名字。
objc_property_t:定义属性。叫这个名字可能是为了防止和Objective-C 1.0中的用户类型冲突,那时候还没有属性。
Method:定义对象方法或类方法。这个类型提供了方法的名字(就是**选择器**)、参数数量和类型,以及返回值(这些信息合起来称为方法的**签名**),还有一个指向代码的函数指针(也就是方法的**实现**)。
SEL:定义选择器。选择器是方法名的唯一标识符,我理解它就是个字符串。


下面是一些运行代码和对应日止

+ (void)printIvarList{    u_int count;    Ivar *ivarlist = class_copyIvarList([UIView class], &count);    for (int i = 0; i < count; i++)    {        const char *ivarName = ivar_getName(ivarlist[i]);        NSString *strName  = [NSString stringWithCString:ivarName encoding:NSUTF8StringEncoding];        NSLog(@"ivarName:%@", strName);    }}+ (void)printPropertyList{    u_int count;    objc_property_t *properties = class_copyPropertyList([UIView class], &count);    for (int i = 0; i < count; i++)    {        const char *propertyName = property_getName(properties[i]);        NSString *strName  = [NSString stringWithCString:propertyName encoding:NSUTF8StringEncoding];        NSLog(@"propertyName:%@", strName);    }}+ (void)printMethodList{    u_int count;    Method *methods = class_copyMethodList([UIView class], &count);    for (int i = 0; i < count; i++)    {        SEL methodName = method_getName(methods[i]);        NSString *strName  = [NSString stringWithCString:sel_getName(methodName) encoding:NSUTF8StringEncoding];        NSLog(@"methodName:%@", strName);    }}

printIvarList

2015-09-08 11:11:21.976 test7[11804:403582] ivarName:_layer2015-09-08 11:11:21.976 test7[11804:403582] ivarName:_gestureInfo2015-09-08 11:11:21.976 test7[11804:403582] ivarName:_gestureRecognizers2015-09-08 11:11:21.976 test7[11804:403582] ivarName:_subviewCache2015-09-08 11:11:21.976 test7[11804:403582] ivarName:_charge2015-09-08 11:11:21.977 test7[11804:403582] ivarName:_tag2015-09-08 11:11:21.977 test7[11804:403582] ivarName:_viewDelegate2015-09-08 11:11:21.977 test7[11804:403582] ivarName:_backgroundColorSystemColorName2015-09-08 11:11:21.977 test7[11804:403582] ivarName:_countOfMotionEffectsInSubtree2015-09-08 11:11:21.977 test7[11804:403582] ivarName:_countOfTraitChangeRespondersInDirectSubtree2015-09-08 11:11:21.977 test7[11804:403582] ivarName:_viewFlags2015-09-08 11:11:21.977 test7[11804:403582] ivarName:_retainCount2015-09-08 11:11:21.977 test7[11804:403582] ivarName:_tintAdjustmentDimmingCount2015-09-08 11:11:21.977 test7[11804:403582] ivarName:_shouldArchiveUIAppearanceTags2015-09-08 11:11:21.977 test7[11804:403582] ivarName:_interactionTintColor2015-09-08 11:11:21.980 test7[11804:403582] ivarName:_minXVariable2015-09-08 11:11:21.980 test7[11804:403582] ivarName:_minYVariable2015-09-08 11:11:21.980 test7[11804:403582] ivarName:_boundsWidthVariable2015-09-08 11:11:21.980 test7[11804:403582] ivarName:_boundsHeightVariable2015-09-08 11:11:21.980 test7[11804:403582] ivarName:_layoutEngine2015-09-08 11:11:21.980 test7[11804:403582] ivarName:_layoutDebuggingIdentifier2015-09-08 11:11:21.980 test7[11804:403582] ivarName:_internalConstraints2015-09-08 11:11:21.980 test7[11804:403582] ivarName:_constraintsExceptingSubviewAutoresizingConstraints2015-09-08 11:11:21.980 test7[11804:403582] ivarName:__presentationControllerToNotifyOnLayoutSubviews2015-09-08 11:11:21.980 test7[11804:403582] ivarName:_rawLayoutMargins2015-09-08 11:11:21.980 test7[11804:403582] ivarName:_inferredLayoutMargins


printPropertyList


2015-09-08 11:17:23.841 test7[11919:412660] propertyName:artworkCatalog2015-09-08 11:17:23.841 test7[11919:412660] propertyName:focusDirection2015-09-08 11:17:23.841 test7[11919:412660] propertyName:_mayRemainFocused2015-09-08 11:17:23.841 test7[11919:412660] propertyName:skipsSubviewEnumeration2015-09-08 11:17:23.841 test7[11919:412660] propertyName:viewTraversalMark2015-09-08 11:17:23.841 test7[11919:412660] propertyName:viewDelegate2015-09-08 11:17:23.841 test7[11919:412660] propertyName:monitorsSubtree2015-09-08 11:17:23.841 test7[11919:412660] propertyName:backgroundColorSystemColorName2015-09-08 11:17:23.841 test7[11919:412660] propertyName:currentScreenScale2015-09-08 11:17:23.841 test7[11919:412660] propertyName:maskView2015-09-08 11:17:23.841 test7[11919:412660] propertyName:_userInterfaceIdiom2015-09-08 11:17:23.841 test7[11919:412660] propertyName:hash2015-09-08 11:17:23.841 test7[11919:412660] propertyName:superclass2015-09-08 11:17:23.841 test7[11919:412660] propertyName:description2015-09-08 11:17:23.841 test7[11919:412660] propertyName:debugDescription2015-09-08 11:17:23.841 test7[11919:412660] propertyName:gesturesEnabled2015-09-08 11:17:23.842 test7[11919:412660] propertyName:deliversTouchesForGesturesToSuperview2015-09-08 11:17:23.842 test7[11919:412660] propertyName:_inheritedRenderConfig2015-09-08 11:17:23.842 test7[11919:412660] propertyName:_lightStyleRenderConfig2015-09-08 11:17:23.842 test7[11919:412660] propertyName:_accessoryViewFrame2015-09-08 11:17:23.842 test7[11919:412660] propertyName:unsatisfiableConstraintsLoggingSuspended2015-09-08 11:17:23.842 test7[11919:412660] propertyName:hash2015-09-08 11:17:23.842 test7[11919:412660] propertyName:superclass2015-09-08 11:17:23.842 test7[11919:412660] propertyName:description2015-09-08 11:17:23.842 test7[11919:412660] propertyName:debugDescription2015-09-08 11:17:23.842 test7[11919:412660] propertyName:hash2015-09-08 11:17:23.842 test7[11919:412660] propertyName:superclass2015-09-08 11:17:23.842 test7[11919:412660] propertyName:description2015-09-08 11:17:23.842 test7[11919:412660] propertyName:debugDescription2015-09-08 11:17:23.842 test7[11919:412660] propertyName:userInteractionEnabled2015-09-08 11:17:23.842 test7[11919:412660] propertyName:tag2015-09-08 11:17:23.842 test7[11919:412660] propertyName:layer2015-09-08 11:17:23.842 test7[11919:412660] propertyName:interactionTintColor2015-09-08 11:17:23.842 test7[11919:412660] propertyName:_layoutDebuggingIdentifier2015-09-08 11:17:23.843 test7[11919:412660] propertyName:focused2015-09-08 11:17:23.843 test7[11919:412660] propertyName:_countOfMotionEffectsInSubtree2015-09-08 11:17:23.843 test7[11919:412660] propertyName:_maskView2015-09-08 11:17:23.843 test7[11919:412660] propertyName:_ancestorDefinesTintColor2015-09-08 11:17:23.843 test7[11919:412660] propertyName:_ancestorDefinesTintAdjustmentMode2015-09-08 11:17:23.843 test7[11919:412660] propertyName:_presentationControllerToNotifyOnLayoutSubviews2015-09-08 11:17:23.843 test7[11919:412660] propertyName:_rawLayoutMargins2015-09-08 11:17:23.843 test7[11919:412660] propertyName:_inferredLayoutMargins2015-09-08 11:17:23.843 test7[11919:412660] propertyName:_layoutEngine2015-09-08 11:17:23.843 test7[11919:412660] propertyName:_boundsWidthVariable2015-09-08 11:17:23.843 test7[11919:412660] propertyName:_boundsHeightVariable2015-09-08 11:17:23.843 test7[11919:412660] propertyName:_minXVariable2015-09-08 11:17:23.843 test7[11919:412660] propertyName:_minYVariable2015-09-08 11:17:23.843 test7[11919:412660] propertyName:_internalConstraints2015-09-08 11:17:23.843 test7[11919:412660] propertyName:_constraintsExceptingSubviewAutoresizingConstraints2015-09-08 11:17:23.843 test7[11919:412660] propertyName:unsatisfiableConstraintsLoggingSuspended2015-09-08 11:17:23.843 test7[11919:412660] propertyName:_shouldArchiveUIAppearanceTags2015-09-08 11:17:23.843 test7[11919:412660] propertyName:_interactionTintColor2015-09-08 11:17:23.844 test7[11919:412660] propertyName:_backdropMaskViewForGrayscaleTint2015-09-08 11:17:23.844 test7[11919:412660] propertyName:_backdropMaskViewForColorTint2015-09-08 11:17:23.844 test7[11919:412660] propertyName:_backdropMaskViewForFilters2015-09-08 11:17:23.844 test7[11919:412660] propertyName:_backdropMaskViews2015-09-08 11:17:23.844 test7[11919:412660] propertyName:_wantsGeometryChangeNotification2015-09-08 11:17:23.844 test7[11919:412660] propertyName:hash2015-09-08 11:17:23.844 test7[11919:412660] propertyName:superclass2015-09-08 11:17:23.844 test7[11919:412660] propertyName:description2015-09-08 11:17:23.844 test7[11919:412660] propertyName:debugDescription2015-09-08 11:17:23.844 test7[11919:412660] propertyName:traitCollection2015-09-08 11:17:23.844 test7[11919:412660] propertyName:preferredFocusedItem2015-09-08 11:17:23.844 test7[11919:412660] propertyName:focusedView2015-09-08 11:17:23.844 test7[11919:412660] propertyName:center2015-09-08 11:17:23.844 test7[11919:412660] propertyName:bounds2015-09-08 11:17:23.844 test7[11919:412660] propertyName:transform


printMethodList

2015-09-08 11:25:01.481 test7[12055:421291] methodName:mf_currentScreenScale2015-09-08 11:25:01.481 test7[12055:421291] methodName:mf_enclosingScrollView2015-09-08 11:25:01.481 test7[12055:421291] methodName:mf_frontSibling2015-09-08 11:25:01.481 test7[12055:421291] methodName:colorize2015-09-08 11:25:01.481 test7[12055:421291] methodName:abSetLayoutDebuggingColor:2015-09-08 11:25:01.481 test7[12055:421291] methodName:ancestorBackdropView2015-09-08 11:25:01.481 test7[12055:421291] methodName:abIndexPathOfSubview:2015-09-08 11:25:01.482 test7[12055:421291] methodName:abSubviewAtIndexPath:2015-09-08 11:25:01.482 test7[12055:421291] methodName:_recursiveFindDescendantScrollViewAtPoint:withEvent:2015-09-08 11:25:01.482 test7[12055:421291] methodName:_findDescendantViewAtPoint:withEvent:2015-09-08 11:25:01.482 test7[12055:421291] methodName:_web_setSubviews:2015-09-08 11:25:01.482 test7[12055:421291] methodName:setFrameSize:2015-09-08 11:25:01.482 test7[12055:421291] methodName:setFrameOrigin:2015-09-08 11:25:01.482 test7[12055:421291] methodName:setFrameX:2015-09-08 11:25:01.499 test7[12055:421291] methodName:setFrameEndX:y:2015-09-08 11:25:01.499 test7[12055:421291] methodName:setFrameY:2015-09-08 11:25:01.499 test7[12055:421291] methodName:setFrameWidth:2015-09-08 11:25:01.499 test7[12055:421291] methodName:setFrameHeight:2015-09-08 11:25:01.500 test7[12055:421291] methodName:artworkCatalog2015-09-08 11:25:01.500 test7[12055:421291] methodName:clearArtworkCatalogs2015-09-08 11:25:01.500 test7[12055:421291] methodName:mpFirstLabelSubview2015-09-08 11:25:01.500 test7[12055:421291] methodName:mpPerformRecursiveBlock:2015-09-08 11:25:01.500 test7[12055:421291] methodName:mpSetFrameOrigin:2015-09-08 11:25:01.500 test7[12055:421291] methodName:mpSetFrameSize:2015-09-08 11:25:01.500 test7[12055:421291] methodName:mpAncestorViewController2015-09-08 11:25:01.500 test7[12055:421291] methodName:constraintsAffectingLayoutForAxis:2015-09-08 11:25:01.500 test7[12055:421291] methodName:viewDidMoveToSuperview2015-09-08 11:25:01.514 test7[12055:421291] methodName:setNeedsDisplayOnBoundsChange:2015-09-08 11:25:01.514 test7[12055:421291] methodName:setUserInteractionEnabled:2015-09-08 11:25:01.514 test7[12055:421291] methodName:_screen2015-09-08 11:25:01.514 test7[12055:421291] methodName:_populateArchivedSubviews:2015-09-08 11:25:01.514 test7[12055:421291] methodName:hitTest:withEvent:2015-09-08 11:25:01.514 test7[12055:421291] methodName:pointInside:withEvent:2015-09-08 11:25:01.514 test7[12055:421291] methodName:setAlpha:2015-09-08 11:25:01.514 test7[12055:421291] methodName:didMoveToWindow2015-09-08 11:25:01.514 test7[12055:421291] methodName:_intrinsicSizeWithinSize:2015-09-08 11:25:01.514 test7[12055:421291] methodName:bringSubviewToFront:2015-09-08 11:25:01.514 test7[12055:421291] methodName:layoutSubviews2015-09-08 11:25:01.514 test7[12055:421291] methodName:setContentScaleFactor:2015-09-08 11:25:01.514 test7[12055:421291] methodName:insertSubview:atIndex:2015-09-08 11:25:01.514 test7[12055:421291] methodName:setClipsSubviews:2015-09-08 11:25:01.514 test7[12055:421291] methodName:sendSubviewToBack:2015-09-08 11:25:01.515 test7[12055:421291] methodName:_canBeReusedInPickerView2015-09-08 11:25:01.515 test7[12055:421291] methodName:_inheritedInteractionTintColor2015-09-08 11:25:01.515 test7[12055:421291] methodName:_setInteractionTintColor:2015-09-08 11:25:01.515 test7[12055:421291] methodName:_contentHuggingDefault_isUsuallyFixedHeight2015-09-08 11:25:01.515 test7[12055:421291] methodName:_contentHuggingDefault_isUsuallyFixedWidth2015-09-08 11:25:01.515 test7[12055:421291] methodName:sizeThatFits:2015-09-08 11:25:01.515 test7[12055:421291] methodName:insertSubview:below:2015-09-08 11:25:01.515 test7[12055:421291] methodName:setClipsToBounds:2015-09-08 11:25:01.515 test7[12055:421291] methodName:insertSubview:belowSubview:2015-09-08 11:25:01.515 test7[12055:421291] methodName:setContentMode:2015-09-08 11:25:01.516 test7[12055:421291] methodName:addGestureRecognizer:2015-09-08 11:25:01.516 test7[12055:421291] methodName:removeGestureRecognizer:2015-09-08 11:25:01.516 test7[12055:421291] methodName:gestureRecognizerShouldBegin:2015-09-08 11:25:01.516 test7[12055:421291] methodName:_userInterfaceIdiom2015-09-08 11:25:01.516 test7[12055:421291] methodName:_basicAnimationWithKeyPath:2015-09-08 11:25:01.516 test7[12055:421291] methodName:contentScaleFactor2015-09-08 11:25:01.516 test7[12055:421291] methodName:pointInside:forEvent:2015-09-08 11:25:01.516 test7[12055:421291] methodName:setTranslatesAutoresizingMaskIntoConstraints:2015-09-08 11:25:01.516 test7[12055:421291] methodName:snapshotViewAfterScreenUpdates:2015-09-08 11:25:01.516 test7[12055:421291] methodName:addConstraints:2015-09-08 11:25:01.516 test7[12055:421291] methodName:_currentScreenScale2015-09-08 11:25:01.516 test7[12055:421291] methodName:snapshotView2015-09-08 11:25:01.516 test7[12055:421291] methodName:_viewDelegate2015-09-08 11:25:01.517 test7[12055:421291] methodName:_recursivelyNameLayerTree2015-09-08 11:25:01.517 test7[12055:421291] methodName:_setVisualAltitude:2015-09-08 11:25:01.517 test7[12055:421291] methodName:_setVisualAltitudeBias:2015-09-08 11:25:01.517 test7[12055:421291] methodName:gestureRecognizers2015-09-08 11:25:01.517 test7[12055:421291] methodName:focusedView2015-09-08 11:25:01.517 test7[12055:421291] methodName:setGestureRecognizers:2015-09-08 11:25:01.517 test7[12055:421291] methodName:updateUserActivityState:2015-09-08 11:25:01.517 test7[12055:421291] methodName:restoreUserActivityState:2015-09-08 11:25:01.517 test7[12055:421291] methodName:_viewControllerForAncestor2015-09-08 11:25:01.517 test7[12055:421291] methodName:traitCollection2015-09-08 11:25:01.517 test7[12055:421291] methodName:_responderExternalTouchRectForWindow:2015-09-08 11:25:01.517 test7[12055:421291] methodName:_responderSelectionRectForWindow:2015-09-08 11:25:01.517 test7[12055:421291] methodName:isMultipleTouchEnabled2015-09-08 11:25:01.517 test7[12055:421291] methodName:_shouldApplyExclusiveTouch2015-09-08 11:25:01.517 test7[12055:421291] methodName:_hitTest:withEvent:windowServerHitTestWindow:2015-09-08 11:25:01.518 test7[12055:421291] methodName:preferredFocusedItem2015-09-08 11:25:01.518 test7[12055:421291] methodName:_mayRemainFocused2015-09-08 11:25:01.518 test7[12055:421291] methodName:_deepestPreferredFocusView2015-09-08 11:25:01.518 test7[12055:421291] methodName:_allowsFocusToLeaveViaHeading:2015-09-08 11:25:01.518 test7[12055:421291] methodName:focusDirection2015-09-08 11:25:01.518 test7[12055:421291] methodName:setFocusDirection:2015-09-08 11:25:01.518 test7[12055:421291] methodName:_setMayRemainFocused:2015-09-08 11:25:01.518 test7[12055:421291] methodName:_willChangeToIdiom:onScreen:2015-09-08 11:25:01.518 test7[12055:421291] methodName:alignmentRectInsets2015-09-08 11:25:01.518 test7[12055:421291] methodName:_scroller2015-09-08 11:25:01.518 test7[12055:421291] methodName:_shouldAnimatePropertyWithKey:2015-09-08 11:25:01.519 test7[12055:421291] methodName:_window2015-09-08 11:25:01.519 test7[12055:421291] methodName:_dispatchTintColorVisitorWithReasons:2015-09-08 11:25:01.519 test7[12055:421291] methodName:scriptingInfoWithChildren2015-09-08 11:25:01.519 test7[12055:421291] methodName:translatesAutoresizingMaskIntoConstraints2015-09-08 11:25:01.519 test7[12055:421291] methodName:setNeedsPreferredFocusedItemUpdate2015-09-08 11:25:01.519 test7[12055:421291] methodName:_recursivelySuspendMotionEffects2015-09-08 11:25:01.520 test7[12055:421291] methodName:_isFocusedOrAncestorOfFocusedView2015-09-08 11:25:01.520 test7[12055:421291] methodName:_recursivelyReconsiderMotionEffectSuspension2015-09-08 11:25:01.520 test7[12055:421291] methodName:_touchSloppinessFactor2015-09-08 11:25:01.520 test7[12055:421291] methodName:_isChargeEnabled2015-09-08 11:25:01.520 test7[12055:421291] methodName:_isAlphaHittableAndHasAlphaHittableAncestors2015-09-08 11:25:01.520 test7[12055:421291] methodName:_canHandleStatusBarTouchAtLocation:2015-09-08 11:25:01.520 test7[12055:421291] methodName:_isInVisibleHierarchy2015-09-08 11:25:01.520 test7[12055:421291] methodName:_layer2015-09-08 11:25:01.524 test7[12055:421291] methodName:_convertVisualAltitude:fromView:2015-09-08 11:25:01.524 test7[12055:421291] methodName:_convertVisualAltitude:toView:2015-09-08 11:25:01.524 test7[12055:421291] methodName:_rootForKeyResponderCycle2015-09-08 11:25:01.524 test7[12055:421291] methodName:frameOrigin2015-09-08 11:25:01.524 test7[12055:421291] methodName:setCenter:2015-09-08 11:25:01.524 test7[12055:421291] methodName:_setHostsLayoutEngine:2015-09-08 11:25:01.524 test7[12055:421291] methodName:_setNeedsUpdateConstraints2015-09-08 11:25:01.524 test7[12055:421291] methodName:_willChangeToIdiomOnScreen:traverseHierarchy:2015-09-08 11:25:01.524 test7[12055:421291] methodName:_rebuildLayoutFromScratch2015-09-08 11:25:01.524 test7[12055:421291] methodName:_recursivelyConsiderResumingMotionEffects2015-09-08 11:25:01.524 test7[12055:421291] methodName:_didChangeFromIdiomOnScreen:traverseHierarchy:2015-09-08 11:25:01.524 test7[12055:421291] methodName:_traitCollectionDidChangeFromOldCollection:toNewCollection:scaleDidChange:2015-09-08 11:25:01.524 test7[12055:421291] methodName:_noteTraitsDidChangeRecursively2015-09-08 11:25:01.524 test7[12055:421291] methodName:cancelTouchTracking2015-09-08 11:25:01.524 test7[12055:421291] methodName:gestureEnded:2015-09-08 11:25:01.524 test7[12055:421291] methodName:cancelMouseTracking2015-09-08 11:25:01.525 test7[12055:421291] methodName:containsView:2015-09-08 11:25:01.525 test7[12055:421291] methodName:_focusedViewDidChange:2015-09-08 11:25:01.525 test7[12055:421291] methodName:_interactionTintColor2015-09-08 11:25:01.525 test7[12055:421291] methodName:isAncestorOfItem:2015-09-08 11:25:01.525 test7[12055:421291] methodName:isDescendantOfView:2015-09-08 11:25:01.525 test7[12055:421291] methodName:_updateFocusItemOverlayViews2015-09-08 11:25:01.525 test7[12055:421291] methodName:_containedInAbsoluteResponderChain2015-09-08 11:25:01.525 test7[12055:421291] methodName:_appearanceContainer2015-09-08 11:25:01.525 test7[12055:421291] methodName:_shouldDelayTouchForSystemGestures:2015-09-08 11:25:01.525 test7[12055:421291] methodName:_firstResponder2015-09-08 11:25:01.525 test7[12055:421291] methodName:_becomeFirstResponderWhenPossible2015-09-08 11:25:01.525 test7[12055:421291] methodName:_supportsBecomeFirstResponderWhenPossible2015-09-08 11:25:01.525 test7[12055:421291] methodName:_isInAWindow2015-09-08 11:25:01.525 test7[12055:421291] methodName:_normalInheritedTintColor2015-09-08 11:25:01.525 test7[12055:421291] methodName:_clearAnimationFilters2015-09-08 11:25:01.525 test7[12055:421291] methodName:removeConstraints:2015-09-08 11:25:01.525 test7[12055:421291] methodName:_isViewHierarchyPreparedForConstraint:2015-09-08 11:25:01.525 test7[12055:421291] methodName:useBlockyMagnificationInClassic2015-09-08 11:25:01.526 test7[12055:421291] methodName:_tintColorArchivingKey2015-09-08 11:25:01.526 test7[12055:421291] methodName:setClearsContextBeforeDrawing:2015-09-08 11:25:01.526 test7[12055:421291] methodName:_setPrimitiveContentHuggingPrioritiesValue:2015-09-08 11:25:01.526 test7[12055:421291] methodName:_setPrimitiveContentCompressionResistancePrioritiesValue:2015-09-08 11:25:01.526 test7[12055:421291] methodName:_encodeFrameWithCoder:2015-09-08 11:25:01.526 test7[12055:421291] methodName:_encodableSubviews2015-09-08 11:25:01.526 test7[12055:421291] methodName:_encodeBackgroundColorWithCoder:2015-09-08 11:25:01.526 test7[12055:421291] methodName:clearsContextBeforeDrawing2015-09-08 11:25:01.526 test7[12055:421291] methodName:contentMode2015-09-08 11:25:01.526 test7[12055:421291] methodName:clipsToBounds2015-09-08 11:25:01.526 test7[12055:421291] methodName:_primitiveContentHuggingPrioritiesValue2015-09-08 11:25:01.526 test7[12055:421291] methodName:_primitiveContentCompressionResistancePrioritiesValue2015-09-08 11:25:01.526 test7[12055:421291] methodName:_discardLayoutEngine:2015-09-08 11:25:01.526 test7[12055:421291] methodName:_setMaskView:2015-09-08 11:25:01.526 test7[12055:421291] methodName:_invalidateSubviewCache2015-09-08 11:25:01.526 test7[12055:421291] methodName:removeAllGestureRecognizers2015-09-08 11:25:01.526 test7[12055:421291] methodName:_unregisterAllMotionEffects2015-09-08 11:25:01.526 test7[12055:421291] methodName:_unregisterFromAnimators2015-09-08 11:25:01.527 test7[12055:421291] methodName:_shouldResignFirstResponderWithInteractionDisabled2015-09-08 11:25:01.527 test7[12055:421291] methodName:_promoteSelfOrDescendantToFirstResponderIfNecessary2015-09-08 11:25:01.527 test7[12055:421291] methodName:_collectKeyViews:2015-09-08 11:25:01.527 test7[12055:421291] methodName:_topToBottomLeftToRightViewCompare:2015-09-08 11:25:01.527 test7[12055:421291] methodName:_backgroundCGColor2015-09-08 11:25:01.527 test7[12055:421291] methodName:_canDrawContent2015-09-08 11:25:01.527 test7[12055:421291] methodName:layoutMarginsDidChange2015-09-08 11:25:01.527 test7[12055:421291] methodName:_setRawLayoutMargins:2015-09-08 11:25:01.527 test7[12055:421291] methodName:_updateInferredLayoutMargins2015-09-08 11:25:01.527 test7[12055:421291] methodName:preservesSuperviewLayoutMargins2015-09-08 11:25:01.527 test7[12055:421291] methodName:_layoutMarginsDidChange2015-09-08 11:25:01.527 test7[12055:421291] methodName:_fakeShouldAnimatePropertyWithKey:2015-09-08 11:25:01.528 test7[12055:421291] methodName:_invalidateAppearanceForSubviewsOfClass:2015-09-08 11:25:01.528 test7[12055:421291] methodName:_invalidateAppearanceForTraitCollection:2015-09-08 11:25:01.528 test7[12055:421291] methodName:invalidateIntrinsicContentSize2015-09-08 11:25:01.528 test7[12055:421291] methodName:traitCollectionDidChange:2015-09-08 11:25:01.528 test7[12055:421291] methodName:_viewControllerToNotifyOnLayoutSubviews2015-09-08 11:25:01.528 test7[12055:421291] methodName:_wrappedProcessDidChangeRecursivelyFromOldTraits:toCurrentTraits:scaleDidChange:forceNotification:2015-09-08 11:25:01.528 test7[12055:421291] methodName:_withUnsatisfiableConstraintsLoggingSuspendedIfEngineDelegateExists:2015-09-08 11:25:01.528 test7[12055:421291] methodName:_receiveVisitor:2015-09-08 11:25:01.528 test7[12055:421291] methodName:forceDisplayIfNeeded2015-09-08 11:25:01.528 test7[12055:421291] methodName:setInteractionTintColor:2015-09-08 11:25:01.528 test7[12055:421291] methodName:interactionTintColor2015-09-08 11:25:01.528 test7[12055:421291] methodName:tintColor2015-09-08 11:25:01.528 test7[12055:421291] methodName:tintAdjustmentMode2015-09-08 11:25:01.528 test7[12055:421291] methodName:_defaultTintAdjustmentMode2015-09-08 11:25:01.529 test7[12055:421291] methodName:setTintColor:2015-09-08 11:25:01.529 test7[12055:421291] methodName:__darkSystemColorForColor:2015-09-08 11:25:01.529 test7[12055:421291] methodName:_hasNormalTintAdjustmentMode2015-09-08 11:25:01.529 test7[12055:421291] methodName:_contentMargin2015-09-08 11:25:01.529 test7[12055:421291] methodName:_setDrawsAsBackdropOverlayWithBlendMode:2015-09-08 11:25:01.529 test7[12055:421291] methodName:_maskView2015-09-08 11:25:01.529 test7[12055:421291] methodName:_backdropMaskViewForGrayscaleTint2015-09-08 11:25:01.529 test7[12055:421291] methodName:_backdropMaskViewForColorTint2015-09-08 11:25:01.530 test7[12055:421291] methodName:_backdropMaskViewForFilters2015-09-08 11:25:01.530 test7[12055:421291] methodName:_backdropMaskViewFlags2015-09-08 11:25:01.530 test7[12055:421291] methodName:_generateBackdropMaskImage2015-09-08 11:25:01.530 test7[12055:421291] methodName:_setBackdropMaskView:forFlag:2015-09-08 11:25:01.530 test7[12055:421291] methodName:_setBackdropMaskViewForGrayscaleTint:2015-09-08 11:25:01.530 test7[12055:421291] methodName:_setBackdropMaskViewForColorTint:2015-09-08 11:25:01.530 test7[12055:421291] methodName:_setBackdropMaskViewForColorBurnTint:2015-09-08 11:25:01.530 test7[12055:421291] methodName:_setBackdropMaskViewForDarkeningTint:2015-09-08 11:25:01.530 test7[12055:421291] methodName:_setBackdropMaskViewForFilters:2015-09-08 11:25:01.530 test7[12055:421291] methodName:_backdropMaskViewForColorBurnTint2015-09-08 11:25:01.530 test7[12055:421291] methodName:_backdropMaskViewForDarkeningTint2015-09-08 11:25:01.530 test7[12055:421291] methodName:_setFrameForBackdropMaskViews:convertFrame:2015-09-08 11:25:01.530 test7[12055:421291] methodName:_anyBackdropMaskView2015-09-08 11:25:01.530 test7[12055:421291] methodName:_setCenterForBackdropMaskViews:convertPoint:2015-09-08 11:25:01.530 test7[12055:421291] methodName:_setHiddenForBackdropMaskViews:2015-09-08 11:25:01.530 test7[12055:421291] methodName:_recursivelySetHiddenForBackdropMaskViews:2015-09-08 11:25:01.530 test7[12055:421291] methodName:_updateBackdropMaskFrames2015-09-08 11:25:01.531 test7[12055:421291] methodName:_countOfMotionEffectsInSubtree2015-09-08 11:25:01.531 test7[12055:421291] methodName:set_countOfMotionEffectsInSubtree:2015-09-08 11:25:01.531 test7[12055:421291] methodName:_isInHierarchyAllowingMotionEffects2015-09-08 11:25:01.531 test7[12055:421291] methodName:_dispatchMotionEffectsVisitorWithDelta:2015-09-08 11:25:01.531 test7[12055:421291] methodName:addMotionEffect:2015-09-08 11:25:01.531 test7[12055:421291] methodName:removeMotionEffect:2015-09-08 11:25:01.531 test7[12055:421291] methodName:motionEffects2015-09-08 11:25:01.531 test7[12055:421291] methodName:_beginSuspendingMotionEffects2015-09-08 11:25:01.531 test7[12055:421291] methodName:_endSuspendingMotionEffects2015-09-08 11:25:01.531 test7[12055:421291] methodName:_parallaxMotionEffect2015-09-08 11:25:01.531 test7[12055:421291] methodName:_removeMotionEffect:2015-09-08 11:25:01.531 test7[12055:421291] methodName:_addMotionEffect:2015-09-08 11:25:01.531 test7[12055:421291] methodName:_visualAltitudeBias2015-09-08 11:25:01.531 test7[12055:421291] methodName:_updateParallaxEffectWithAltitude:bias:2015-09-08 11:25:01.531 test7[12055:421291] methodName:_visualAltitude2015-09-08 11:25:01.531 test7[12055:421291] methodName:canBecomeFirstResponder2015-09-08 11:25:01.531 test7[12055:421291] methodName:_addPossibleRespondersToArray:2015-09-08 11:25:01.531 test7[12055:421291] methodName:convertRect:toCoordinateSpace:2015-09-08 11:25:01.532 test7[12055:421291] methodName:convertRect:fromCoordinateSpace:2015-09-08 11:25:01.532 test7[12055:421291] methodName:_constraints_frameDidChange2015-09-08 11:25:01.532 test7[12055:421291] methodName:_setCenterForBackdropMaskViews:2015-09-08 11:25:01.532 test7[12055:421291] methodName:_shouldNotifyGeometryObservers2015-09-08 11:25:01.532 test7[12055:421291] methodName:_notifyGeometryObserversWithChangeInfo:2015-09-08 11:25:01.532 test7[12055:421291] methodName:_hostsLayoutEngine2015-09-08 11:25:01.532 test7[12055:421291] methodName:_invalidateAutoresizingConstraints2015-09-08 11:25:01.532 test7[12055:421291] methodName:_constraintsExceptingSubviewAutoresizingConstraints2015-09-08 11:25:01.532 test7[12055:421291] methodName:_withAutomaticEngineOptimizationDisabled:2015-09-08 11:25:01.532 test7[12055:421291] methodName:_reestablishConstraintsForTransformChange2015-09-08 11:25:01.532 test7[12055:421291] methodName:_setTransformForBackdropMaskViews:2015-09-08 11:25:01.532 test7[12055:421291] methodName:_addGeometryChangeObserver:2015-09-08 11:25:01.532 test7[12055:421291] methodName:_removeGeometryChangeObserver:2015-09-08 11:25:01.532 test7[12055:421291] methodName:_wantsGeometryChangeNotification2015-09-08 11:25:01.532 test7[12055:421291] methodName:_disableGeometryObserverNotification2015-09-08 11:25:01.532 test7[12055:421291] methodName:_geometryChanges:forAncestor:2015-09-08 11:25:01.532 test7[12055:421291] methodName:resizableSnapshotViewFromRect:afterScreenUpdates:withCapInsets:2015-09-08 11:25:01.532 test7[12055:421291] methodName:_imageFromRect:2015-09-08 11:25:01.533 test7[12055:421291] methodName:_imageSnapshotCapturedAllContent2015-09-08 11:25:01.533 test7[12055:421291] methodName:_drawViewHierarchyInRect:2015-09-08 11:25:01.533 test7[12055:421291] methodName:drawViewHierarchyInRect:afterScreenUpdates:2015-09-08 11:25:01.533 test7[12055:421291] methodName:shouldChangeFocusedItem:heading:2015-09-08 11:25:01.533 test7[12055:421291] methodName:_isFocusableElement2015-09-08 11:25:01.533 test7[12055:421291] methodName:isFocused2015-09-08 11:25:01.533 test7[12055:421291] methodName:focusedViewWillChange2015-09-08 11:25:01.533 test7[12055:421291] methodName:focusedViewDidChange2015-09-08 11:25:01.533 test7[12055:421291] methodName:_firstCommonAncestorToView:2015-09-08 11:25:01.533 test7[12055:421291] methodName:_shouldChangeFocusedItem:heading:2015-09-08 11:25:01.533 test7[12055:421291] methodName:isUserInteractionEnabled2015-09-08 11:25:01.533 test7[12055:421291] methodName:_isEligibleForFocus2015-09-08 11:25:01.533 test7[12055:421291] methodName:canBecomeFocused2015-09-08 11:25:01.533 test7[12055:421291] methodName:_addPossibleFocusableElementsToArray:2015-09-08 11:25:01.533 test7[12055:421291] methodName:_traitCollectionForChildEnvironment:2015-09-08 11:25:01.533 test7[12055:421291] methodName:convertPoint:toCoordinateSpace:2015-09-08 11:25:01.533 test7[12055:421291] methodName:convertPoint:fromCoordinateSpace:2015-09-08 11:25:01.533 test7[12055:421291] methodName:_layoutDebuggingIdentifier2015-09-08 11:25:01.534 test7[12055:421291] methodName:_setUnsatisfiableConstraintsLoggingSuspended:2015-09-08 11:25:01.534 test7[12055:421291] methodName:_isUnsatisfiableConstraintsLoggingSuspended2015-09-08 11:25:01.534 test7[12055:421291] methodName:_contentWidthVariable2015-09-08 11:25:01.534 test7[12055:421291] methodName:_contentHeightVariable2015-09-08 11:25:01.534 test7[12055:421291] methodName:nsli_minXVariable2015-09-08 11:25:01.534 test7[12055:421291] methodName:nsli_minYVariable2015-09-08 11:25:01.534 test7[12055:421291] methodName:nsli_boundsWidthVariable2015-09-08 11:25:01.534 test7[12055:421291] methodName:nsli_boundsHeightVariable2015-09-08 11:25:01.534 test7[12055:421291] methodName:nsli_contentWidthVariable2015-09-08 11:25:01.534 test7[12055:421291] methodName:nsli_contentHeightVariable2015-09-08 11:25:01.534 test7[12055:421291] methodName:_constraintsArray2015-09-08 11:25:01.534 test7[12055:421291] methodName:_baselineOffsetFromBottom2015-09-08 11:25:01.534 test7[12055:421291] methodName:_firstBaselineOffsetFromTop2015-09-08 11:25:01.534 test7[12055:421291] methodName:_appearanceGuideClass2015-09-08 11:25:01.534 test7[12055:421291] methodName:_appearanceTraitCollection2015-09-08 11:25:01.534 test7[12055:421291] methodName:_traitStorageConstraints2015-09-08 11:25:01.534 test7[12055:421291] methodName:_setTraitStorageConstraints:2015-09-08 11:25:01.534 test7[12055:421291] methodName:_traitStorageSubviews2015-09-08 11:25:01.535 test7[12055:421291] methodName:_setTraitStorageSubviews:2015-09-08 11:25:01.535 test7[12055:421291] methodName:_createLayerWithFrame:2015-09-08 11:25:01.535 test7[12055:421291] methodName:_setChargeEnabled:2015-09-08 11:25:01.535 test7[12055:421291] methodName:setTapDelegate:2015-09-08 11:25:01.535 test7[12055:421291] methodName:tapDelegate2015-09-08 11:25:01.535 test7[12055:421291] methodName:_nextKeyResponder2015-09-08 11:25:01.535 test7[12055:421291] methodName:_previousKeyResponder2015-09-08 11:25:01.535 test7[12055:421291] methodName:_clearBecomeFirstResponderWhenCapable2015-09-08 11:25:01.535 test7[12055:421291] methodName:_canBecomeFirstResponderWhenPossible2015-09-08 11:25:01.535 test7[12055:421291] methodName:startHeartbeat:inRunLoopMode:2015-09-08 11:25:01.535 test7[12055:421291] methodName:stopHeartbeat:2015-09-08 11:25:01.535 test7[12055:421291] methodName:_hasOpaqueBackground2015-09-08 11:25:01.535 test7[12055:421291] methodName:_setBackgroundColorSystemColorName:2015-09-08 11:25:01.535 test7[12055:421291] methodName:_backgroundColorSystemColorName2015-09-08 11:25:01.535 test7[12055:421291] methodName:setLayoutMargins:2015-09-08 11:25:01.535 test7[12055:421291] methodName:layoutMargins2015-09-08 11:25:01.535 test7[12055:421291] methodName:setPreservesSuperviewLayoutMargins:2015-09-08 11:25:01.535 test7[12055:421291] methodName:_appearanceIsInvalid2015-09-08 11:25:01.535 test7[12055:421291] methodName:_setAppearanceIsInvalid:2015-09-08 11:25:01.536 test7[12055:421291] methodName:_processDidChangeRecursivelyFromOldTraits:toCurrentTraits:forceNotification:2015-09-08 11:25:01.536 test7[12055:421291] methodName:setTintAdjustmentMode:2015-09-08 11:25:01.536 test7[12055:421291] methodName:_primitiveTintAdjustmentMode2015-09-08 11:25:01.536 test7[12055:421291] methodName:tintColorDidChange2015-09-08 11:25:01.536 test7[12055:421291] methodName:interactionTintColorDidChange2015-09-08 11:25:01.536 test7[12055:421291] methodName:_beginOcclusion:2015-09-08 11:25:01.536 test7[12055:421291] methodName:_endOcclusion:2015-09-08 11:25:01.536 test7[12055:421291] methodName:_ancestorDefinesTintColor2015-09-08 11:25:01.536 test7[12055:421291] methodName:_setAncestorDefinesTintColor:2015-09-08 11:25:01.536 test7[12055:421291] methodName:_ancestorDefinesTintAdjustmentMode2015-09-08 11:25:01.536 test7[12055:421291] methodName:_setAncestorDefinesTintAdjustmentMode:2015-09-08 11:25:01.536 test7[12055:421291] methodName:_textButtonMargin2015-09-08 11:25:01.536 test7[12055:421291] methodName:_imageButtonMargin2015-09-08 11:25:01.536 test7[12055:421291] methodName:_drawsAsBackdropOverlay2015-09-08 11:25:01.536 test7[12055:421291] methodName:_setDrawsAsBackdropOverlay:2015-09-08 11:25:01.536 test7[12055:421291] methodName:setMaskView:2015-09-08 11:25:01.536 test7[12055:421291] methodName:maskView2015-09-08 11:25:01.537 test7[12055:421291] methodName:_setBackdropMaskViewFlags:2015-09-08 11:25:01.537 test7[12055:421291] methodName:_backdropMaskViews2015-09-08 11:25:01.537 test7[12055:421291] methodName:_generateBackdropMaskViewForFlag:2015-09-08 11:25:01.537 test7[12055:421291] methodName:_backdropMaskViewForFlag:2015-09-08 11:25:01.537 test7[12055:421291] methodName:_removeBackdropMaskViews2015-09-08 11:25:01.537 test7[12055:421291] methodName:_setFrameForBackdropMaskViews:2015-09-08 11:25:01.537 test7[12055:421291] methodName:_setBoundsForBackdropMaskViews:2015-09-08 11:25:01.537 test7[12055:421291] methodName:_updateBackdropMaskViewsInScrollView:2015-09-08 11:25:01.537 test7[12055:421291] methodName:_motionEffects2015-09-08 11:25:01.537 test7[12055:421291] methodName:setMotionEffects:2015-09-08 11:25:01.537 test7[12055:421291] methodName:_motionEffectsAreSuspended2015-09-08 11:25:01.537 test7[12055:421291] methodName:_applyKeyPathsAndRelativeValues:forMotionEffect:2015-09-08 11:25:01.537 test7[12055:421291] methodName:_unapplyMotionEffect:2015-09-08 11:25:01.537 test7[12055:421291] methodName:_currentUserInterfaceIdiom2015-09-08 11:25:01.537 test7[12055:421291] methodName:_visualAltitudeSensitiveBoundsWithVisualAltitude:edges:2015-09-08 11:25:01.537 test7[12055:421291] methodName:_removeParentGeometryObservers2015-09-08 11:25:01.538 test7[12055:421291] methodName:_addParentGeometryObservers2015-09-08 11:25:01.538 test7[12055:421291] methodName:_registerForGeometryChanges2015-09-08 11:25:01.538 test7[12055:421291] methodName:_unregisterForGeometryChanges2015-09-08 11:25:01.538 test7[12055:421291] methodName:_intrinsicContentSizeInvalidatedForChildView:2015-09-08 11:25:01.538 test7[12055:421291] methodName:snapshot2015-09-08 11:25:01.538 test7[12055:421291] methodName:resizableSnapshotFromRect:withCapInsets:2015-09-08 11:25:01.538 test7[12055:421291] methodName:drawViewHierarchyInRect:2015-09-08 11:25:01.538 test7[12055:421291] methodName:resizableSnapshotViewFromRect:withCapInsets:2015-09-08 11:25:01.538 test7[12055:421291] methodName:_focusedViewWillChange:2015-09-08 11:25:01.538 test7[12055:421291] methodName:_transparentFocusContainer2015-09-08 11:25:01.538 test7[12055:421291] methodName:_rawLayoutMargins2015-09-08 11:25:01.538 test7[12055:421291] methodName:_inferredLayoutMargins2015-09-08 11:25:01.538 test7[12055:421291] methodName:_setInferredLayoutMargins:2015-09-08 11:25:01.538 test7[12055:421291] methodName:_minXVariable2015-09-08 11:25:01.538 test7[12055:421291] methodName:_minYVariable2015-09-08 11:25:01.538 test7[12055:421291] methodName:_boundsWidthVariable2015-09-08 11:25:01.538 test7[12055:421291] methodName:_boundsHeightVariable2015-09-08 11:25:01.538 test7[12055:421291] methodName:_setLayoutEngine:2015-09-08 11:25:01.539 test7[12055:421291] methodName:_setLayoutDebuggingIdentifier:2015-09-08 11:25:01.539 test7[12055:421291] methodName:_internalConstraints2015-09-08 11:25:01.539 test7[12055:421291] methodName:_setInternalConstraints:2015-09-08 11:25:01.539 test7[12055:421291] methodName:_shouldArchiveUIAppearanceTags2015-09-08 11:25:01.539 test7[12055:421291] methodName:_setShouldArchiveUIAppearanceTags:2015-09-08 11:25:01.539 test7[12055:421291] methodName:setTag:2015-09-08 11:25:01.539 test7[12055:421291] methodName:_presentationControllerToNotifyOnLayoutSubviews2015-09-08 11:25:01.539 test7[12055:421291] methodName:_setPresentationControllerToNotifyOnLayoutSubviews:2015-09-08 11:25:01.539 test7[12055:421291] methodName:_gestureInfo2015-09-08 11:25:01.539 test7[12055:421291] methodName:_gestureRecognizers2015-09-08 11:25:01.539 test7[12055:421291] methodName:_needsLayoutOnAnimatedFrameChangeForNewFrame:2015-09-08 11:25:01.539 test7[12055:421291] methodName:_is_setNeedsLayout2015-09-08 11:25:01.539 test7[12055:421291] methodName:resizeSubviewsWithOldSize:2015-09-08 11:25:01.539 test7[12055:421291] methodName:layoutBelowIfNeeded2015-09-08 11:25:01.539 test7[12055:421291] methodName:_notifyReferenceViewSizeChange2015-09-08 11:25:01.539 test7[12055:421291] methodName:_interceptEvent:2015-09-08 11:25:01.539 test7[12055:421291] methodName:resizeWithOldSuperviewSize:2015-09-08 11:25:01.539 test7[12055:421291] methodName:autoresizingMask2015-09-08 11:25:01.540 test7[12055:421291] methodName:_layoutEngineCreateIfNecessary2015-09-08 11:25:01.540 test7[12055:421291] methodName:_nsis_center:bounds:inEngine:2015-09-08 11:25:01.540 test7[12055:421291] methodName:_nsis_origin:bounds:inEngine:2015-09-08 11:25:01.540 test7[12055:421291] methodName:_autoresizingConstraintsAreUpdated2015-09-08 11:25:01.540 test7[12055:421291] methodName:_applyISEngineLayoutValues2015-09-08 11:25:01.540 test7[12055:421291] methodName:_applyAutoresizingMaskWithOldSuperviewSize:2015-09-08 11:25:01.540 test7[12055:421291] methodName:_resizeWithOldSuperviewSize:2015-09-08 11:25:01.540 test7[12055:421291] methodName:_resizeWithOldSuperviewSize_ancient:2015-09-08 11:25:01.540 test7[12055:421291] methodName:_needsLayoutOnAnimatedBoundsChangeForNewBounds:2015-09-08 11:25:01.540 test7[12055:421291] methodName:_supportsContentDimensionVariables2015-09-08 11:25:01.540 test7[12055:421291] methodName:_isFloatingLayoutItem2015-09-08 11:25:01.540 test7[12055:421291] methodName:setMultipleTouchEnabled:2015-09-08 11:25:01.540 test7[12055:421291] methodName:setExclusiveTouch:2015-09-08 11:25:01.540 test7[12055:421291] methodName:isExclusiveTouch2015-09-08 11:25:01.540 test7[12055:421291] methodName:convertSize:toView:2015-09-08 11:25:01.540 test7[12055:421291] methodName:convertSize:fromView:2015-09-08 11:25:01.540 test7[12055:421291] methodName:_convertOffset:toView:2015-09-08 11:25:01.540 test7[12055:421291] methodName:_convertOffset:fromView:2015-09-08 11:25:01.541 test7[12055:421291] methodName:hitRect2015-09-08 11:25:01.541 test7[12055:421291] methodName:setFrame:forFields:2015-09-08 11:25:01.541 test7[12055:421291] methodName:setRotationBy:2015-09-08 11:25:01.541 test7[12055:421291] methodName:setAutoresizesSubviews:2015-09-08 11:25:01.541 test7[12055:421291] methodName:autoresizesSubviews2015-09-08 11:25:01.541 test7[12055:421291] methodName:sizeToFit2015-09-08 11:25:01.541 test7[12055:421291] methodName:origin2015-09-08 11:25:01.541 test7[12055:421291] methodName:setOrigin:2015-09-08 11:25:01.541 test7[12055:421291] methodName:_setTraitStorageList:2015-09-08 11:25:01.541 test7[12055:421291] methodName:_addSubview:positioned:relativeTo:2015-09-08 11:25:01.541 test7[12055:421291] methodName:_movedToFront2015-09-08 11:25:01.541 test7[12055:421291] methodName:_setBackgroundCGColor:withSystemColorName:2015-09-08 11:25:01.541 test7[12055:421291] methodName:viewTraversalMark2015-09-08 11:25:01.541 test7[12055:421291] methodName:_associatedViewControllerForwardsAppearanceCallbacks:performHierarchyCheck:isRoot:2015-09-08 11:25:01.541 test7[12055:421291] methodName:setViewTraversalMark:2015-09-08 11:25:01.541 test7[12055:421291] methodName:_willMoveToWindow:2015-09-08 11:25:01.541 test7[12055:421291] methodName:willMoveToWindow:2015-09-08 11:25:01.541 test7[12055:421291] methodName:_findFirstSubviewWantingToBecomeFirstResponder2015-09-08 11:25:01.542 test7[12055:421291] methodName:_makeSubtreePerformSelector:withObject:withObject:copySublayers:2015-09-08 11:25:01.542 test7[12055:421291] methodName:_makeSubtreePerformSelector:withObject:2015-09-08 11:25:01.542 test7[12055:421291] methodName:deferredBecomeFirstResponder2015-09-08 11:25:01.542 test7[12055:421291] methodName:_parentalLayoutEngineDidChangeTo:2015-09-08 11:25:01.542 test7[12055:421291] methodName:_didMoveFromWindow:toWindow:2015-09-08 11:25:01.542 test7[12055:421291] methodName:_shouldTryPromoteDescendantToFirstResponder2015-09-08 11:25:01.542 test7[12055:421291] methodName:movedFromSuperview:2015-09-08 11:25:01.542 test7[12055:421291] methodName:didMoveToSuperview2015-09-08 11:25:01.542 test7[12055:421291] methodName:viewWithTag:2015-09-08 11:25:01.542 test7[12055:421291] methodName:_shouldDirtyLayoutForConstraints2015-09-08 11:25:01.542 test7[12055:421291] methodName:_preferredLayoutEngineToUserScalingCoefficients2015-09-08 11:25:01.542 test7[12055:421291] methodName:_switchToLayoutEngine:2015-09-08 11:25:01.542 test7[12055:421291] methodName:alignmentRectForFrame:2015-09-08 11:25:01.542 test7[12055:421291] methodName:_updateConstraintsAtEngineLevelIfNeeded2015-09-08 11:25:01.542 test7[12055:421291] methodName:updateConstraintsIfNeeded2015-09-08 11:25:01.542 test7[12055:421291] methodName:_wantsAutolayout2015-09-08 11:25:01.542 test7[12055:421291] methodName:systemLayoutSizeFittingSize:withHorizontalFittingPriority:verticalFittingPriority:2015-09-08 11:25:01.542 test7[12055:421291] methodName:_is_layout2015-09-08 11:25:01.543 test7[12055:421291] methodName:_updateConstraintsAsNecessaryAndApplyLayoutFromEngine2015-09-08 11:25:01.543 test7[12055:421291] methodName:_removeFirstResponderFromSubtree2015-09-08 11:25:01.543 test7[12055:421291] methodName:_willRemoveSubviewWantingAutolayout:2015-09-08 11:25:01.543 test7[12055:421291] methodName:exchangeSubviewAtIndex:withSubviewAtIndex:2015-09-08 11:25:01.543 test7[12055:421291] methodName:insertSubview:aboveSubview:2015-09-08 11:25:01.543 test7[12055:421291] methodName:didAddSubview:2015-09-08 11:25:01.543 test7[12055:421291] methodName:willMoveToSuperview:2015-09-08 11:25:01.543 test7[12055:421291] methodName:_didRemoveSubview:2015-09-08 11:25:01.543 test7[12055:421291] methodName:_setBackgroundColor:2015-09-08 11:25:01.543 test7[12055:421291] methodName:_backgroundColor2015-09-08 11:25:01.543 test7[12055:421291] methodName:_willMoveToWindow:withAncestorView:2015-09-08 11:25:01.543 test7[12055:421291] methodName:insertSubview:above:2015-09-08 11:25:01.543 test7[12055:421291] methodName:_postMovedFromSuperview:2015-09-08 11:25:01.543 test7[12055:421291] methodName:movedToSuperview:2015-09-08 11:25:01.543 test7[12055:421291] methodName:viewWillMoveToSuperview:2015-09-08 11:25:01.543 test7[12055:421291] methodName:movedFromWindow:2015-09-08 11:25:01.543 test7[12055:421291] methodName:movedToWindow:2015-09-08 11:25:01.543 test7[12055:421291] methodName:_updateNeedsDisplayOnBoundsChange2015-09-08 11:25:01.544 test7[12055:421291] methodName:setClearsContext:2015-09-08 11:25:01.544 test7[12055:421291] methodName:_renderSnapshotWithRect:inContext:2015-09-08 11:25:01.544 test7[12055:421291] methodName:recursivelyForceDisplayIfNeeded2015-09-08 11:25:01.544 test7[12055:421291] methodName:_createImageFromRect:padding:2015-09-08 11:25:01.544 test7[12055:421291] methodName:_resetContentStretch2015-09-08 11:25:01.544 test7[12055:421291] methodName:_setContentStretchInPixels:forContentSize:shouldTile:2015-09-08 11:25:01.544 test7[12055:421291] methodName:setContentStretch:2015-09-08 11:25:01.544 test7[12055:421291] methodName:contentStretch2015-09-08 11:25:01.544 test7[12055:421291] methodName:_setContentRectInPixels:forContentSize:2015-09-08 11:25:01.544 test7[12055:421291] methodName:_resetContentRect2015-09-08 11:25:01.544 test7[12055:421291] methodName:_setShouldRasterize:2015-09-08 11:25:01.544 test7[12055:421291] methodName:visibleBounds2015-09-08 11:25:01.544 test7[12055:421291] methodName:setFixedBackgroundPattern:2015-09-08 11:25:01.544 test7[12055:421291] methodName:_setHiddenForReuse:2015-09-08 11:25:01.544 test7[12055:421291] methodName:_isHiddenForReuse2015-09-08 11:25:01.544 test7[12055:421291] methodName:setContentsPosition:2015-09-08 11:25:01.544 test7[12055:421291] methodName:newSnapshotWithRect:2015-09-08 11:25:01.544 test7[12055:421291] methodName:_enableLayerKitPatternDrawing:2015-09-08 11:25:01.545 test7[12055:421291] methodName:_createIOSurfaceWithPadding:2015-09-08 11:25:01.545 test7[12055:421291] methodName:_removeAllAnimations:2015-09-08 11:25:01.545 test7[12055:421291] methodName:_isInTransitionBlock2015-09-08 11:25:01.545 test7[12055:421291] methodName:_enumerateDescendentViews:2015-09-08 11:25:01.545 test7[12055:421291] methodName:_interceptMouseEvent:2015-09-08 11:25:01.545 test7[12055:421291] methodName:hitTest:forEvent:2015-09-08 11:25:01.545 test7[12055:421291] methodName:createSnapshotWithRect:2015-09-08 11:25:01.545 test7[12055:421291] methodName:intrinsicContentSize2015-09-08 11:25:01.545 test7[12055:421291] methodName:_setWantsAutolayout2015-09-08 11:25:01.545 test7[12055:421291] methodName:_layoutEngine_windowDidChange2015-09-08 11:25:01.545 test7[12055:421291] methodName:_informContainerThatSubviewsNeedUpdateConstraints2015-09-08 11:25:01.545 test7[12055:421291] methodName:_applyAppearanceInvocations2015-09-08 11:25:01.545 test7[12055:421291] methodName:_gestureEnded:2015-09-08 11:25:01.545 test7[12055:421291] methodName:_applyScreenScaleToContentScaleFactorIfNotSpecifiedByDeveloper2015-09-08 11:25:01.545 test7[12055:421291] methodName:_controlsOwnScaleFactor2015-09-08 11:25:01.545 test7[12055:421291] methodName:_shouldInheritScreenScaleAsContentScaleFactor2015-09-08 11:25:01.545 test7[12055:421291] methodName:_willChangeToIdiom:onScreen:traverseHierarchy:2015-09-08 11:25:01.545 test7[12055:421291] methodName:_performUpdatesForPossibleChangesOfIdiom:orScreen:traverseHierarchy:2015-09-08 11:25:01.546 test7[12055:421291] methodName:_setUserInterfaceIdiom:2015-09-08 11:25:01.546 test7[12055:421291] methodName:_didChangeFromIdiom:onScreen:traverseHierarchy:2015-09-08 11:25:01.546 test7[12055:421291] methodName:_subscribeToScrollNotificationsIfNecessary:2015-09-08 11:25:01.546 test7[12055:421291] methodName:_setIsAncestorOfFirstResponder:2015-09-08 11:25:01.546 test7[12055:421291] methodName:_isRootForKeyResponderCycle2015-09-08 11:25:01.546 test7[12055:421291] methodName:_renderLayerContentsWithRect:inContext:2015-09-08 11:25:01.546 test7[12055:421291] methodName:_createRenderServerBufferFromRect:padding:2015-09-08 11:25:01.546 test7[12055:421291] methodName:_isAncestorOfFirstResponder2015-09-08 11:25:01.546 test7[12055:421291] methodName:_constraints_subviewWillChangeSuperview:2015-09-08 11:25:01.546 test7[12055:421291] methodName:_descendent:willMoveFromSuperview:toSuperview:2015-09-08 11:25:01.546 test7[12055:421291] methodName:_unsubscribeToScrollNotificationsIfNecessary:2015-09-08 11:25:01.546 test7[12055:421291] methodName:_setSubviewWantsAutolayoutTripWantsAutolayout:2015-09-08 11:25:01.546 test7[12055:421291] methodName:_descendent:didMoveFromSuperview:toSuperview:2015-09-08 11:25:01.546 test7[12055:421291] methodName:_constraints_subviewDidChangeSuperview:2015-09-08 11:25:01.546 test7[12055:421291] methodName:_alignmentDebuggingOverlayCreateIfNecessary:2015-09-08 11:25:01.546 test7[12055:421291] methodName:_removeAlignmentDebuggingOverlays2015-09-08 11:25:01.546 test7[12055:421291] methodName:_colorViewBoundsOverlayCreateIfNecessary:2015-09-08 11:25:01.546 test7[12055:421291] methodName:_removeColorViewBoundsOverlays2015-09-08 11:25:01.547 test7[12055:421291] methodName:_focusItemsOverlayCreateIfNecessary:2015-09-08 11:25:01.547 test7[12055:421291] methodName:_removeFocusItemOverlayViews2015-09-08 11:25:01.547 test7[12055:421291] methodName:_allowsArchivingAsSubview2015-09-08 11:25:01.547 test7[12055:421291] methodName:_viewIndexPath2015-09-08 11:25:01.547 test7[12055:421291] methodName:_appliesExclusiveTouchToSubviewTree2015-09-08 11:25:01.547 test7[12055:421291] methodName:_isInExclusiveTouchSubviewTree2015-09-08 11:25:01.547 test7[12055:421291] methodName:_initWithLayer:2015-09-08 11:25:01.547 test7[12055:421291] methodName:_initWithMaskImage:2015-09-08 11:25:01.547 test7[12055:421291] methodName:_subclassImplementsDrawRect2015-09-08 11:25:01.547 test7[12055:421291] methodName:_subclassImplementsIntrinsicContentSize2015-09-08 11:25:01.547 test7[12055:421291] methodName:_subclassImplementsIntrinsicSizeWithinSize2015-09-08 11:25:01.547 test7[12055:421291] methodName:_didScroll2015-09-08 11:25:01.547 test7[12055:421291] methodName:_invalidateLayerContents2015-09-08 11:25:01.547 test7[12055:421291] methodName:_setInterceptMouseEvent:2015-09-08 11:25:01.547 test7[12055:421291] methodName:_webCustomViewWasAddedAsSubviewOfView:2015-09-08 11:25:01.547 test7[12055:421291] methodName:_webCustomViewWillBeRemovedFromSuperview2015-09-08 11:25:01.547 test7[12055:421291] methodName:_webCustomViewWasRemovedFromSuperview:2015-09-08 11:25:01.547 test7[12055:421291] methodName:_alwaysHandleScrollerMouseEvent2015-09-08 11:25:01.548 test7[12055:421291] methodName:_alwaysHandleInteractionEvents2015-09-08 11:25:01.548 test7[12055:421291] methodName:_animationIsPaused2015-09-08 11:25:01.548 test7[12055:421291] methodName:_delaysTouchesForSystemGestures2015-09-08 11:25:01.548 test7[12055:421291] methodName:_setDelaysTouchesForSystemGestures:2015-09-08 11:25:01.548 test7[12055:421291] methodName:_clearBecomeFirstResponderWhenCapableOnSubtree2015-09-08 11:25:01.548 test7[12055:421291] methodName:_setContentImage:2015-09-08 11:25:01.548 test7[12055:421291] methodName:_setContentsTransform:2015-09-08 11:25:01.548 test7[12055:421291] methodName:_renderLayerWithRect:inContext:2015-09-08 11:25:01.548 test7[12055:421291] methodName:skipsSubviewEnumeration2015-09-08 11:25:01.548 test7[12055:421291] methodName:setSkipsSubviewEnumeration:2015-09-08 11:25:01.548 test7[12055:421291] methodName:_setViewDelegate:2015-09-08 11:25:01.548 test7[12055:421291] methodName:_viewOrderRelativeToView:2015-09-08 11:25:01.548 test7[12055:421291] methodName:_subviewAtIndex:2015-09-08 11:25:01.548 test7[12055:421291] methodName:_containingScrollView2015-09-08 11:25:01.548 test7[12055:421291] methodName:_monitorsSubtree2015-09-08 11:25:01.548 test7[12055:421291] methodName:_setMonitorsSubtree:2015-09-08 11:25:01.548 test7[12055:421291] methodName:_setBackgroundCGColor:2015-09-08 11:25:01.548 test7[12055:421291] methodName:_registerAsReferenceView2015-09-08 11:25:01.549 test7[12055:421291] methodName:_unregisterAsReferenceView2015-09-08 11:25:01.549 test7[12055:421291] methodName:_isMemberOfViewControllerHierarchy:2015-09-08 11:25:01.549 test7[12055:421291] methodName:_visualAltitudeSensitiveBoundsWithInfiniteEdges:2015-09-08 11:25:01.549 test7[12055:421291] methodName:_disabledColor2015-09-08 11:25:01.549 test7[12055:421291] methodName:_isInteractiveElement2015-09-08 11:25:01.549 test7[12055:421291] methodName:gesturesEnabled2015-09-08 11:25:01.549 test7[12055:421291] methodName:setGesturesEnabled:2015-09-08 11:25:01.549 test7[12055:421291] methodName:deliversTouchesForGesturesToSuperview2015-09-08 11:25:01.549 test7[12055:421291] methodName:setDeliversTouchesForGesturesToSuperview:2015-09-08 11:25:01.549 test7[12055:421291] methodName:_wantsReapplicationOfAutoLayout2015-09-08 11:25:01.549 test7[12055:421291] methodName:_autoresizingDescription2015-09-08 11:25:01.549 test7[12055:421291] methodName:_recursiveFocusDescription2015-09-08 11:25:01.549 test7[12055:421291] methodName:_superDescription2015-09-08 11:25:01.549 test7[12055:421291] methodName:recursiveDescription2015-09-08 11:25:01.549 test7[12055:421291] methodName:_scriptingInfo2015-09-08 11:25:01.549 test7[12055:421291] methodName:_style2015-09-08 11:25:01.549 test7[12055:421291] methodName:_containerStyle2015-09-08 11:25:01.549 test7[12055:421291] methodName:_isScrollingEnabled2015-09-08 11:25:01.550 test7[12055:421291] methodName:_enclosingScrollerIncludingSelf2015-09-08 11:25:01.550 test7[12055:421291] methodName:_enclosingScrollableScrollerIncludingSelf2015-09-08 11:25:01.550 test7[12055:421291] methodName:_areAccessibilityButtonShapesEnabled2015-09-08 11:25:01.550 test7[12055:421291] methodName:_layoutEngineIfAvailable2015-09-08 11:25:01.550 test7[12055:421291] methodName:_nsis_contentSize2015-09-08 11:25:01.550 test7[12055:421291] methodName:_layoutEngine_willRemoveLayoutConstraint:2015-09-08 11:25:01.550 test7[12055:421291] methodName:_layoutEngine_didAddLayoutConstraint:roundingAdjustment:mutuallyExclusiveConstraints:2015-09-08 11:25:01.550 test7[12055:421291] methodName:nsli_engineToUserScalingCoefficients2015-09-08 11:25:01.596 test7[12055:421291] methodName:_layoutVariablesWithAmbiguousValue2015-09-08 11:25:01.596 test7[12055:421291] methodName:_zoomAnimationDurationForScale:2015-09-08 11:25:01.596 test7[12055:421291] methodName:_useContentDimensionVariablesForConstraintLowering2015-09-08 11:25:01.596 test7[12055:421291] methodName:_prepareToAppearInNavigationItem:onLeft:2015-09-08 11:25:01.596 test7[12055:421291] methodName:addConstraint:2015-09-08 11:25:01.596 test7[12055:421291] methodName:removeConstraint:2015-09-08 11:25:01.596 test7[12055:421291] methodName:frameForAlignmentRect:2015-09-08 11:25:01.596 test7[12055:421291] methodName:needsUpdateConstraints2015-09-08 11:25:01.596 test7[12055:421291] methodName:animator:stopAnimation:2015-09-08 11:25:01.596 test7[12055:421291] methodName:animator:startAnimation:2015-09-08 11:25:01.596 test7[12055:421291] methodName:textInputView2015-09-08 11:25:01.596 test7[12055:421291] methodName:endEditing:2015-09-08 11:25:01.597 test7[12055:421291] methodName:_nsis_origin2015-09-08 11:25:01.597 test7[12055:421291] methodName:_nsis_bounds2015-09-08 11:25:01.597 test7[12055:421291] methodName:updateConstraints2015-09-08 11:25:01.597 test7[12055:421291] methodName:_systemLayoutSizeFittingSize:withHorizontalFittingPriority:verticalFittingPriority:2015-09-08 11:25:01.597 test7[12055:421291] methodName:gestureStarted:2015-09-08 11:25:01.597 test7[12055:421291] methodName:gestureChanged:2015-09-08 11:25:01.597 test7[12055:421291] methodName:viewForBaselineLayout2015-09-08 11:25:01.597 test7[12055:421291] methodName:_printFormatterClass2015-09-08 11:25:01.597 test7[12055:421291] methodName:_setRenderConfig:2015-09-08 11:25:01.597 test7[12055:421291] methodName:textEffectsVisibilityLevel2015-09-08 11:25:01.597 test7[12055:421291] methodName:_inheritedRenderConfig2015-09-08 11:25:01.597 test7[12055:421291] methodName:_clipCornersOfView:2015-09-08 11:25:01.598 test7[12055:421291] methodName:_startGesture:event:2015-09-08 11:25:01.598 test7[12055:421291] methodName:_stopGesture:event:2015-09-08 11:25:01.598 test7[12055:421291] methodName:_zoomToWindowPoint:scale:duration:constrainScrollPoint:event:2015-09-08 11:25:01.598 test7[12055:421291] methodName:zoomToScale:2015-09-08 11:25:01.598 test7[12055:421291] methodName:_scrollerContentSize2015-09-08 11:25:01.598 test7[12055:421291] methodName:_constrainedScrollPoint:contentSize:2015-09-08 11:25:01.598 test7[12055:421291] methodName:_gestureChanged:event:2015-09-08 11:25:01.598 test7[12055:421291] methodName:_scrollPointForPoint:scale:constrain:snapToEdge:2015-09-08 11:25:01.598 test7[12055:421291] methodName:_zoomToScrollPoint:scale:duration:event:2015-09-08 11:25:01.598 test7[12055:421291] methodName:_zoomToScale:event:2015-09-08 11:25:01.598 test7[12055:421291] methodName:_minimumZoomScaleDelta2015-09-08 11:25:01.598 test7[12055:421291] methodName:_internalScaleForScale:2015-09-08 11:25:01.598 test7[12055:421291] methodName:_rubberBandScaleForScale:2015-09-08 11:25:01.598 test7[12055:421291] methodName:_scaleForInternalScale:2015-09-08 11:25:01.598 test7[12055:421291] methodName:_zoomToEvent:scale:animate:constrainScrollPoint:2015-09-08 11:25:01.598 test7[12055:421291] methodName:_canStartZoomFromEvent:2015-09-08 11:25:01.598 test7[12055:421291] methodName:_rubberbandZoomToEvent:scale:2015-09-08 11:25:01.598 test7[12055:421291] methodName:_animateToScrollPoint:2015-09-08 11:25:01.599 test7[12055:421291] methodName:_setRotationAnimationProgress:2015-09-08 11:25:01.599 test7[12055:421291] methodName:rotateToDegrees:2015-09-08 11:25:01.599 test7[12055:421291] methodName:_rotateToDegrees:duration:event:2015-09-08 11:25:01.599 test7[12055:421291] methodName:_canStartRotationFromEvent:2015-09-08 11:25:01.599 test7[12055:421291] methodName:_resetZoomingWithEvent:2015-09-08 11:25:01.599 test7[12055:421291] methodName:_startZoomFromEvent:2015-09-08 11:25:01.599 test7[12055:421291] methodName:_zoomWithEvent:2015-09-08 11:25:01.599 test7[12055:421291] methodName:_startRotationFromEvent:2015-09-08 11:25:01.599 test7[12055:421291] methodName:_rotateFromEvent:2015-09-08 11:25:01.599 test7[12055:421291] methodName:_setGestureInfoZoomScale:2015-09-08 11:25:01.599 test7[12055:421291] methodName:_isRubberBanding2015-09-08 11:25:01.599 test7[12055:421291] methodName:_setZoomAnimationProgress:2015-09-08 11:25:01.599 test7[12055:421291] methodName:_stopZoomFromEvent:2015-09-08 11:25:01.599 test7[12055:421291] methodName:_stopRotationFromEvent:2015-09-08 11:25:01.599 test7[12055:421291] methodName:canHandleGestures2015-09-08 11:25:01.599 test7[12055:421291] methodName:setGestureDelegate:2015-09-08 11:25:01.599 test7[12055:421291] methodName:gestureDelegate2015-09-08 11:25:01.599 test7[12055:421291] methodName:setEnabledGestures:2015-09-08 11:25:01.600 test7[12055:421291] methodName:enabledGestures2015-09-08 11:25:01.600 test7[12055:421291] methodName:setValue:forGestureAttribute:2015-09-08 11:25:01.600 test7[12055:421291] methodName:valueForGestureAttribute:2015-09-08 11:25:01.600 test7[12055:421291] methodName:setRotationDegrees:duration:2015-09-08 11:25:01.600 test7[12055:421291] methodName:rotationDegrees2015-09-08 11:25:01.600 test7[12055:421291] methodName:_setZoomScale:duration:2015-09-08 11:25:01.600 test7[12055:421291] methodName:_zoomScale2015-09-08 11:25:01.600 test7[12055:421291] methodName:stateForGestureType:2015-09-08 11:25:01.600 test7[12055:421291] methodName:_animateZoomFailureToWindowPoint:scale:duration:2015-09-08 11:25:01.600 test7[12055:421291] methodName:_zoomAnimationProgress2015-09-08 11:25:01.600 test7[12055:421291] methodName:_invalidateIntrinsicContentSizeNeedingLayout:2015-09-08 11:25:01.600 test7[12055:421291] methodName:_needsDoubleUpdateConstraintsPass2015-09-08 11:25:01.600 test7[12055:421291] methodName:_hasLayoutEngine2015-09-08 11:25:01.600 test7[12055:421291] methodName:_layoutDebuggingTitle2015-09-08 11:25:01.600 test7[12055:421291] methodName:_rootInputWindowController2015-09-08 11:25:01.600 test7[12055:421291] methodName:_resizeForKeyplaneSize:splitWidthsChanged:2015-09-08 11:25:01.600 test7[12055:421291] methodName:reduceWidth:2015-09-08 11:25:01.600 test7[12055:421291] methodName:textEffectsVisibilityLevelInKeyboardWindow2015-09-08 11:25:01.601 test7[12055:421291] methodName:setNeedsUpdateConstraints2015-09-08 11:25:01.601 test7[12055:421291] methodName:_syntheticTouch2015-09-08 11:25:01.601 test7[12055:421291] methodName:_syntheticUIEventWithGSEvent:touchPhase:2015-09-08 11:25:01.601 test7[12055:421291] methodName:systemLayoutSizeFittingSize:2015-09-08 11:25:01.601 test7[12055:421291] methodName:_systemLayoutSizeFittingSize:withHorizontalFittingPriority:verticalFittingPriority:hasIntentionallyCollapsedHeight:2015-09-08 11:25:01.601 test7[12055:421291] methodName:_setContentHuggingPriorities:2015-09-08 11:25:01.601 test7[12055:421291] methodName:contentHuggingPriorityForAxis:2015-09-08 11:25:01.601 test7[12055:421291] methodName:setContentCompressionResistancePriority:forAxis:2015-09-08 11:25:01.601 test7[12055:421291] methodName:contentCompressionResistancePriorityForAxis:2015-09-08 11:25:01.601 test7[12055:421291] methodName:setContentHuggingPriority:forAxis:2015-09-08 11:25:01.601 test7[12055:421291] methodName:compareTextEffectsOrdering:2015-09-08 11:25:01.601 test7[12055:421291] methodName:_clipCorners2015-09-08 11:25:01.601 test7[12055:421291] methodName:isAccessibilityElementByDefault2015-09-08 11:25:01.601 test7[12055:421291] methodName:isElementAccessibilityExposedToInterfaceBuilder2015-09-08 11:25:01.601 test7[12055:421291] methodName:_depthFirstCompare:2015-09-08 11:25:01.601 test7[12055:421291] methodName:_compatibleBounds2015-09-08 11:25:01.601 test7[12055:421291] methodName:_lightStyleRenderConfig2015-09-08 11:25:01.602 test7[12055:421291] methodName:drawRect:forViewPrintFormatter:2015-09-08 11:25:01.602 test7[12055:421291] methodName:_accessoryViewFrame2015-09-08 11:25:01.602 test7[12055:421291] methodName:_setAccessoryViewFrame:2015-09-08 11:25:01.602 test7[12055:421291] methodName:_convertToAutolayoutSizingIfNecessary2015-09-08 11:25:01.602 test7[12055:421291] methodName:_removeAutolayoutSizingConstraints2015-09-08 11:25:01.602 test7[12055:421291] methodName:_hasAutolayoutHeightConstraint2015-09-08 11:25:01.602 test7[12055:421291] methodName:_constrainViewToSuperview2015-09-08 11:25:01.602 test7[12055:421291] methodName:_numberOfColumns:2015-09-08 11:25:01.602 test7[12055:421291] methodName:_disableLayoutFlushing2015-09-08 11:25:01.602 test7[12055:421291] methodName:_enableLayoutFlushing2015-09-08 11:25:01.602 test7[12055:421291] methodName:_forwardsSystemLayoutFittingSizeToContentView:2015-09-08 11:25:01.602 test7[12055:421291] methodName:_contentSizeConstraints2015-09-08 11:25:01.602 test7[12055:421291] methodName:_initializeLayoutEngine2015-09-08 11:25:01.602 test7[12055:421291] methodName:_descendantWithAmbiguousLayout2015-09-08 11:25:01.602 test7[12055:421291] methodName:exerciseAmbiguityInLayout2015-09-08 11:25:01.602 test7[12055:421291] methodName:_uiib_layoutEngineCreatingIfNecessary2015-09-08 11:25:01.602 test7[12055:421291] methodName:hasAmbiguousLayout2015-09-08 11:25:01.602 test7[12055:421291] methodName:_defaultLayoutDescription2015-09-08 11:25:01.602 test7[12055:421291] methodName:_initializeHostedLayoutEngine2015-09-08 11:25:01.603 test7[12055:421291] methodName:_viewHierarchyUnpreparedForConstraint:2015-09-08 11:25:01.603 test7[12055:421291] methodName:_updateAutoresizingConstraints2015-09-08 11:25:01.603 test7[12055:421291] methodName:_setPotentiallyHasDanglyConstraints:2015-09-08 11:25:01.603 test7[12055:421291] methodName:_tryToAddConstraintWithoutUpdatingConstraintsArray:roundingAdjustment:mutuallyExclusiveConstraints:2015-09-08 11:25:01.603 test7[12055:421291] methodName:_tryToAddConstraint:roundingAdjustment:mutuallyExclusiveConstraints:2015-09-08 11:25:01.603 test7[12055:421291] methodName:_addConstraint:2015-09-08 11:25:01.603 test7[12055:421291] methodName:_removeConstraint:2015-09-08 11:25:01.603 test7[12055:421291] methodName:_withAutomaticEngineOptimizationDisabledIfEngineExists:2015-09-08 11:25:01.603 test7[12055:421291] methodName:_usesAutoresizingConstraints2015-09-08 11:25:01.603 test7[12055:421291] methodName:_constraints_willChangeAutoresizingConstraintsArrayForContainedView:2015-09-08 11:25:01.603 test7[12055:421291] methodName:_constraints_didChangeAutoresizingConstraintsArrayForContainedView:2015-09-08 11:25:01.603 test7[12055:421291] methodName:_usesLayoutEngineHostingConstraints2015-09-08 11:25:01.603 test7[12055:421291] methodName:_layoutEngineHostConstraints2015-09-08 11:25:01.603 test7[12055:421291] methodName:_setLayoutEngineHostConstraints:2015-09-08 11:25:01.603 test7[12055:421291] methodName:_autoresizingConstraints2015-09-08 11:25:01.603 test7[12055:421291] methodName:_setAutoresizingConstraints:2015-09-08 11:25:01.603 test7[12055:421291] methodName:_constraintsEquivalentToAutoresizingMask2015-09-08 11:25:01.604 test7[12055:421291] methodName:_oldUpdateLayoutEngineHostConstraints2015-09-08 11:25:01.604 test7[12055:421291] methodName:_alignmentBounds2015-09-08 11:25:01.604 test7[12055:421291] methodName:_effectiveAutoresizingMask2015-09-08 11:25:01.604 test7[12055:421291] methodName:_alignmentRectForBounds:2015-09-08 11:25:01.604 test7[12055:421291] methodName:_alignmentFrame2015-09-08 11:25:01.604 test7[12055:421291] methodName:_constantsForHorizontalAutoresizingConstraints::2015-09-08 11:25:01.604 test7[12055:421291] methodName:_constantsForVerticalAutoresizingConstraints::2015-09-08 11:25:01.604 test7[12055:421291] methodName:_invalidateEngineHostConstraints2015-09-08 11:25:01.604 test7[12055:421291] methodName:_engineHostConstraints_frameDidChange2015-09-08 11:25:01.604 test7[12055:421291] methodName:_autoresizingConstraints_frameDidChange2015-09-08 11:25:01.604 test7[12055:421291] methodName:_defaultContentHuggingPriorities2015-09-08 11:25:01.604 test7[12055:421291] methodName:_contentHuggingPriorities2015-09-08 11:25:01.604 test7[12055:421291] methodName:_defaultContentCompressionResistancePriorities2015-09-08 11:25:01.604 test7[12055:421291] methodName:_contentCompressionResistancePriorities2015-09-08 11:25:01.604 test7[12055:421291] methodName:_setContentCompressionResistancePriorities:2015-09-08 11:25:01.605 test7[12055:421291] methodName:_generateContentSizeConstraints2015-09-08 11:25:01.605 test7[12055:421291] methodName:_setContentSizeConstraints:2015-09-08 11:25:01.605 test7[12055:421291] methodName:_updateContentSizeConstraints2015-09-08 11:25:01.605 test7[12055:421291] methodName:_populateEngineWithConstraintsForViewSubtree:forComputingFittingSizeOfView:2015-09-08 11:25:01.605 test7[12055:421291] methodName:_recursiveCollectTemporaryInternalConstraintsWithEngine:ignoreAutoresizingMaskConstraints:returningConstraintsForViewsNeedingSecondPass:constraintsRemovedForFitting:constraintsAddedForFitting:2015-09-08 11:25:01.605 test7[12055:421291] methodName:_makeTemporaryInternalConstraintsWithEngine:ignoreAutoresizingMaskConstraints:returningConstraintsForViewsNeedingSecondPass:constraintsRemovedForFitting:constraintsAddedForFitting:2015-09-08 11:25:01.605 test7[12055:421291] methodName:_finishTemporaryInternalConstraints:withEngine:constraintsAddedForFitting:2015-09-08 11:25:01.605 test7[12055:421291] methodName:_wantsBaselineUpdatingFollowingConstraintsPass2015-09-08 11:25:01.605 test7[12055:421291] methodName:_descriptionForLayoutTrace2015-09-08 11:25:01.605 test7[12055:421291] methodName:_legendEntryForDescriptionForLayout2015-09-08 11:25:01.605 test7[12055:421291] methodName:_uiib_tryToAddConstraint:roundingAdjustment:mutuallyExclusiveConstraints:2015-09-08 11:25:01.605 test7[12055:421291] methodName:_constraintForIdentifier:2015-09-08 11:25:01.605 test7[12055:421291] methodName:_invalidateLayoutEngineHostConstraints2015-09-08 11:25:01.605 test7[12055:421291] methodName:_constraints_viewGeometryDidChange2015-09-08 11:25:01.605 test7[12055:421291] methodName:_effectiveAutoresizingMask_autoresizesSubviewsChanged2015-09-08 11:25:01.605 test7[12055:421291] methodName:_uiib_invalidateAutoresizingConstraints2015-09-08 11:25:01.605 test7[12055:421291] methodName:_updateLayoutEngineHostConstraints2015-09-08 11:25:01.606 test7[12055:421291] methodName:_relevantLayoutVariables2015-09-08 11:25:01.606 test7[12055:421291] methodName:_calculatedSystemLayoutSizeFittingSize:withHorizontalFittingPriority:verticalFittingPriority:hasIntentionallyCollapsedHeight:2015-09-08 11:25:01.606 test7[12055:421291] methodName:_recursiveConstraintsTraceAtLevel:2015-09-08 11:25:01.606 test7[12055:421291] methodName:_rootView2015-09-08 11:25:01.606 test7[12055:421291] methodName:_recursiveAutolayoutTraceAtLevel:2015-09-08 11:25:01.606 test7[12055:421291] methodName:_recursiveLayoutEngineDescription2015-09-08 11:25:01.606 test7[12055:421291] methodName:_informContainerThatSubviewsNeedUpdateConstraintsNeedingLayout:2015-09-08 11:25:01.606 test7[12055:421291] methodName:_invalidateSystemLayoutSizeFittingSizeAtEngineDelegateLevel2015-09-08 11:25:01.606 test7[12055:421291] methodName:_setNeedsUpdateConstraintsNeedingLayout:2015-09-08 11:25:01.606 test7[12055:421291] methodName:_accumulateViewConstraintsIntoArray:2015-09-08 11:25:01.606 test7[12055:421291] methodName:_constraintsBrokenWhileUnsatisfiableConstraintsLoggingSuspended2015-09-08 11:25:01.606 test7[12055:421291] methodName:_updateConstraintsIfNeededAccumulatingViewsNeedingSecondPassAndViewsNeedingBaselineUpdate:2015-09-08 11:25:01.606 test7[12055:421291] methodName:_internalUpdateConstraintsIfNeededAccumulatingViewsNeedingSecondPassAndViewsNeedingBaselineUpdate:2015-09-08 11:25:01.606 test7[12055:421291] methodName:_updateConstraintsIfNeeded2015-09-08 11:25:01.606 test7[12055:421291] methodName:_is_needsLayout2015-09-08 11:25:01.607 test7[12055:421291] methodName:nsli_engineToUserScalingCoefficientsInEngine:2015-09-08 11:25:01.607 test7[12055:421291] methodName:_old_nsli_lowerAttribute:intoExpression:withCoefficient:forConstraint:2015-09-08 11:25:01.607 test7[12055:421291] methodName:_viewForBaselineLayout2015-09-08 11:25:01.607 test7[12055:421291] methodName:_layoutDescriptionIfDifferentFromDefault2015-09-08 11:25:01.607 test7[12055:421291] methodName:_constraintsValidityDescription2015-09-08 11:25:01.607 test7[12055:421291] methodName:_autolayoutTrace2015-09-08 11:25:01.607 test7[12055:421291] methodName:_allLayoutEngines2015-09-08 11:25:01.607 test7[12055:421291] methodName:_applyISEngineLayoutToSubviewsSkippingSubview:2015-09-08 11:25:01.607 test7[12055:421291] methodName:_potentiallyHasDanglyConstraints2015-09-08 11:25:01.607 test7[12055:421291] methodName:_boundsForAlignmentRect:2015-09-08 11:25:01.607 test7[12055:421291] methodName:_uiib_hostsLayoutEngine2015-09-08 11:25:01.607 test7[12055:421291] methodName:_uiib_setHostsLayoutEngine:2015-09-08 11:25:01.607 test7[12055:421291] methodName:_recordConstraintBrokenWhileUnsatisfiableConstraintsLoggingSuspended:2015-09-08 11:25:01.607 test7[12055:421291] methodName:nsli_convertSizeToEngineSpace:2015-09-08 11:25:01.607 test7[12055:421291] methodName:_autolayoutSpacingAtEdge:inContainer:2015-09-08 11:25:01.607 test7[12055:421291] methodName:_autolayoutSpacingAtEdge:nextToNeighbor:2015-09-08 11:25:01.607 test7[12055:421291] methodName:_hasCustomAutolayoutNeighborSpacing2015-09-08 11:25:01.607 test7[12055:421291] methodName:_hierarchyRepresentation2015-09-08 11:25:01.608 test7[12055:421291] methodName:_representationOfHierarchyForXcode2015-09-08 11:25:01.608 test7[12055:421291] methodName:_didAddDependentConstraint:2015-09-08 11:25:01.608 test7[12055:421291] methodName:_didRemoveDependentConstraint:2015-09-08 11:25:01.608 test7[12055:421291] methodName:_scrollViewWantingUpdateInConstraint:2015-09-08 11:25:01.608 test7[12055:421291] methodName:_centerExpressionInContainer:vertical:contentInsetScale:2015-09-08 11:25:01.608 test7[12055:421291] methodName:_edgeExpressionInContainer:vertical:max:contentInsetScale:2015-09-08 11:25:01.608 test7[12055:421291] methodName:_dimensionExpressionInContainer:vertical:useContentVariables:2015-09-08 11:25:01.608 test7[12055:421291] methodName:_addCenterExpressionToExpression:isVertical:2015-09-08 11:25:01.608 test7[12055:421291] methodName:_lowerExpressionOneLevelWithCurrentXExpression:YExpression:vertical:container:2015-09-08 11:25:01.608 test7[12055:421291] methodName:position2015-09-08 11:25:01.608 test7[12055:421291] methodName:size2015-09-08 11:25:01.608 test7[12055:421291] methodName:nsis_valueOfVariable:didChangeInEngine:2015-09-08 11:25:01.608 test7[12055:421291] methodName:nsis_descriptionOfVariable:2015-09-08 11:25:01.608 test7[12055:421291] methodName:nsis_shouldIntegralizeVariable:2015-09-08 11:25:01.608 test7[12055:421291] methodName:nsis_valueOfVariableIsUserObservable:2015-09-08 11:25:01.608 test7[12055:421291] methodName:engine:markerForConstraintToBreakAmongConstraints:2015-09-08 11:25:01.608 test7[12055:421291] methodName:engine:willBreakConstraint:dueToMutuallyExclusiveConstraints:2015-09-08 11:25:01.608 test7[12055:421291] methodName:constraintsDidChangeInEngine:2015-09-08 11:25:01.609 test7[12055:421291] methodName:constraints2015-09-08 11:25:01.609 test7[12055:421291] methodName:nsli_layoutEngine2015-09-08 11:25:01.609 test7[12055:421291] methodName:nsli_resolvedValue:forSymbolicConstant:inConstraint:error:2015-09-08 11:25:01.609 test7[12055:421291] methodName:nsli_superitem2015-09-08 11:25:01.609 test7[12055:421291] methodName:nsli_description2015-09-08 11:25:01.609 test7[12055:421291] methodName:nsli_isFlipped2015-09-08 11:25:01.609 test7[12055:421291] methodName:nsli_marginOffsetForAttribute:2015-09-08 11:25:01.609 test7[12055:421291] methodName:nsli_convertSizeFromEngineSpace:2015-09-08 11:25:01.609 test7[12055:421291] methodName:nsli_addConstraint:2015-09-08 11:25:01.609 test7[12055:421291] methodName:nsli_removeConstraint:2015-09-08 11:25:01.609 test7[12055:421291] methodName:_layoutEngine2015-09-08 11:25:01.609 test7[12055:421291] methodName:nsli_autoresizingMask2015-09-08 11:25:01.609 test7[12055:421291] methodName:nsli_lowerAttribute:intoExpression:withCoefficient:forConstraint:2015-09-08 11:25:01.609 test7[12055:421291] methodName:nsli_lowerAttribute:intoExpression:withCoefficient:container:2015-09-08 11:25:01.609 test7[12055:421291] methodName:nsli_descriptionIncludesPointer2015-09-08 11:25:01.609 test7[12055:421291] methodName:description2015-09-08 11:25:01.609 test7[12055:421291] methodName:retain2015-09-08 11:25:01.609 test7[12055:421291] methodName:release2015-09-08 11:25:01.610 test7[12055:421291] methodName:retainCount2015-09-08 11:25:01.610 test7[12055:421291] methodName:dealloc2015-09-08 11:25:01.610 test7[12055:421291] methodName:_tryRetain2015-09-08 11:25:01.610 test7[12055:421291] methodName:_isDeallocating2015-09-08 11:25:01.610 test7[12055:421291] methodName:setValue:forKey:2015-09-08 11:25:01.610 test7[12055:421291] methodName:setBounds:2015-09-08 11:25:01.610 test7[12055:421291] methodName:addAnimation:forKey:2015-09-08 11:25:01.610 test7[12055:421291] methodName:layer2015-09-08 11:25:01.610 test7[12055:421291] methodName:transform2015-09-08 11:25:01.610 test7[12055:421291] methodName:setTransform:2015-09-08 11:25:01.610 test7[12055:421291] methodName:setNeedsLayout2015-09-08 11:25:01.610 test7[12055:421291] methodName:setNeedsDisplay2015-09-08 11:25:01.610 test7[12055:421291] methodName:needsDisplayOnBoundsChange2015-09-08 11:25:01.610 test7[12055:421291] methodName:setPosition:2015-09-08 11:25:01.610 test7[12055:421291] methodName:actionForLayer:forKey:2015-09-08 11:25:01.611 test7[12055:421291] methodName:setNeedsDisplayInRect:2015-09-08 11:25:01.611 test7[12055:421291] methodName:needsDisplay2015-09-08 11:25:01.611 test7[12055:421291] methodName:isHidden2015-09-08 11:25:01.611 test7[12055:421291] methodName:layoutIfNeeded2015-09-08 11:25:01.611 test7[12055:421291] methodName:backgroundColor2015-09-08 11:25:01.611 test7[12055:421291] methodName:isOpaque2015-09-08 11:25:01.611 test7[12055:421291] methodName:drawLayer:inContext:2015-09-08 11:25:01.611 test7[12055:421291] methodName:layoutSublayersOfLayer:2015-09-08 11:25:01.611 test7[12055:421291] methodName:init2015-09-08 11:25:01.611 test7[12055:421291] methodName:tag2015-09-08 11:25:01.611 test7[12055:421291] methodName:viewPrintFormatter2015-09-08 11:25:01.611 test7[12055:421291] methodName:setHidden:2015-09-08 11:25:01.611 test7[12055:421291] methodName:convertPoint:fromView:2015-09-08 11:25:01.611 test7[12055:421291] methodName:subviews2015-09-08 11:25:01.611 test7[12055:421291] methodName:setOpaque:2015-09-08 11:25:01.611 test7[12055:421291] methodName:addSubview:2015-09-08 11:25:01.612 test7[12055:421291] methodName:nextResponder2015-09-08 11:25:01.612 test7[12055:421291] methodName:becomeFirstResponder2015-09-08 11:25:01.612 test7[12055:421291] methodName:convertRect:fromView:2015-09-08 11:25:01.612 test7[12055:421291] methodName:convertPoint:toView:2015-09-08 11:25:01.612 test7[12055:421291] methodName:drawRect:2015-09-08 11:25:01.612 test7[12055:421291] methodName:setFrameOrigin:2015-09-08 11:25:01.612 test7[12055:421291] methodName:isHiddenOrHasHiddenAncestor2015-09-08 11:25:01.612 test7[12055:421291] methodName:willRemoveSubview:2015-09-08 11:25:01.612 test7[12055:421291] methodName:encodeWithCoder:2015-09-08 11:25:01.612 test7[12055:421291] methodName:initWithCoder:2015-09-08 11:25:01.612 test7[12055:421291] methodName:alpha2015-09-08 11:25:01.612 test7[12055:421291] methodName:bounds2015-09-08 11:25:01.612 test7[12055:421291] methodName:setAutoresizingMask:2015-09-08 11:25:01.612 test7[12055:421291] methodName:window2015-09-08 11:25:01.612 test7[12055:421291] methodName:superview2015-09-08 11:25:01.612 test7[12055:421291] methodName:frame2015-09-08 11:25:01.612 test7[12055:421291] methodName:convertRect:toView:2015-09-08 11:25:01.612 test7[12055:421291] methodName:setFrame:2015-09-08 11:25:01.612 test7[12055:421291] methodName:setSize:2015-09-08 11:25:01.613 test7[12055:421291] methodName:initWithSize:2015-09-08 11:25:01.613 test7[12055:421291] methodName:setBackgroundColor:2015-09-08 11:25:01.613 test7[12055:421291] methodName:removeFromSuperview2015-09-08 11:25:01.613 test7[12055:421291] methodName:initWithFrame:2015-09-08 11:25:01.613 test7[12055:421291] methodName:center2015-09-08 11:25:01.613 test7[12055:421291] methodName:extent2015-09-08 11:25:01.613 test7[12055:421291] methodName:charge2015-09-08 11:25:01.613 test7[12055:421291] methodName:setCharge:2015-09-08 11:25:01.613 test7[12055:421291] methodName:isEnabled2015-09-08 11:25:01.613 test7[12055:421291] methodName:setEnabled:



0 0
原创粉丝点击