Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding custom objects to object library

How do I add custom objects to the custom object library in xcode?

I created a class myObject and I want this new object to appear in my object library list for use with IB.

like image 997
Arcadian Avatar asked Aug 10 '11 19:08

Arcadian


People also ask

How do I access custom objects in Salesforce?

Much like a Standard Object, your new Custom Object can be accessed and edited via the Object Manager. From Setup, click the Object Manager tab. Scroll down the object list and click on your new custom object Vehicle Interest. Within the Details section, click Edit.

Can we create custom object in HubSpot?

In each HubSpot account, there are the standard CRM objects: contacts, companies, deals, and tickets. To represent and organize your CRM data based on your business needs, you can also create custom objects. Use the custom objects API to define custom objects, properties, and associations to other CRM objects.

What is a custom object?

A custom object is a set of custom records that supplement standard contact and account records. Custom objects allow you to store additional data in a scalable manner and link that data to a contact or account record.

What are library objects?

Library Objects are single or combinations of multiple objects that have been previously stored in a user defined "library" of objects. Library Objects can be recalled at any time, modified for color, scale and/or texture and be placed in any job file.


1 Answers

This is not a direct answer, but if your custom object is a subclass of something else, e.g. NSObject or UIView, etc, then you can simply select the parent object and then change the identity to your subclass with the attributes window.

If you want a direct answer, then read this post: How do you display custom UIViews in InterfaceBuilder? for instructions to create a plug-in for Interface Builder that uses your custom class.

like image 117
PengOne Avatar answered Oct 26 '22 19:10

PengOne