আমি একটি তত্ত্বাবধানে দুটি মতামত তৈরি করেছি এবং তারপরে দর্শনের মধ্যে সীমাবদ্ধতা যুক্ত করেছি:
_indicatorConstrainWidth = [NSLayoutConstraint constraintWithItem:self.view1 attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:self.view2 attribute:NSLayoutAttributeWidth multiplier:1.0f constant:0.0f];
[_indicatorConstrainWidth setPriority:UILayoutPriorityDefaultLow];
_indicatorConstrainHeight = [NSLayoutConstraint constraintWithItem:self.view1 attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:self.view2 attribute:NSLayoutAttributeHeight multiplier:1.0f constant:0.0f];
[_indicatorConstrainHeight setPriority:UILayoutPriorityDefaultLow];
[self addConstraint:_indicatorConstrainWidth];
[self addConstraint:_indicatorConstrainHeight];
এখন আমি অ্যানিমেশন দিয়ে গুণক সম্পত্তি পরিবর্তন করতে চাই, তবে গুণক সম্পত্তি কীভাবে পরিবর্তন করা যায় তা আমি বুঝতে পারি না। (আমি হেডার ফাইল NSLayoutConstraint.h এ ব্যক্তিগত সম্পত্তিতে _ গুণ খুঁজে পেয়েছি তবে এটি ব্যক্তিগত।
আমি কীভাবে একাধিক সম্পত্তি পরিবর্তন করব?
আমার কাজটি হ'ল পুরানো সীমাবদ্ধতা অপসারণ এবং এর জন্য আলাদা মান সহ নতুনটি যুক্ত করা multipler
।