Posts

Post marked as solved
6 Replies
0 Views
You can achieve it by setting label maximum row properties and adding width and height constraints to the label.
Post not yet marked as solved
4 Replies
0 Views
Replied In KVC in swift
Hi,One more thing just wanted to clarify, is this same concept in case of enums? Is there any better way to support KVC using protocol oriented concept throughout the application?@objcenum SomeEnum: Int { case a, b, c}class SomeClass: NSObject { @objc var name: String = "Test" @objc var category : SomeEnum = .b}var object = SomeClass()print(object.value(forKey: "name"))print(object.value(forKey: "category"))Thanks in advance.
Post not yet marked as solved
4 Replies
0 Views
Replied In KVC in swift
Thanks for details.
Post not yet marked as solved
4 Replies
0 Views
After adding test case in NewFrameworkTests, I get below errorThe bundle “NewFrameworkTests” couldn’t be loaded because it is damaged or missing necessary resources. Try reinstalling the bundle.Library not loaded: @rpath/subframework_A.framework/subframework_ANote: NewFramework depends on subframework_A. And both are different projects.
Post not yet marked as solved
4 Replies
0 Views
Thanks for response.Is it possible to write testcase for new framework? If yes, Please let me know the step.