Visual nested tree-like control for iOS [closed] - iphone

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am designing an iPad App that needs a control that allows the user to create a tree-like nested structure visually similar to a class diagram designer or a ERD diagram designer.
Before I re-invent the wheel, has anyone come across any paid or open source controls that enable this type of functionality?
This is the basic use case: The user taps and creates an entity. The user taps the entity and selects an entity type and a sub entity is created with a link line between the sub entity and the super entity.

The following is what I found:
https://github.com/LaTtEX/MyTreeViewPrototype
https://github.com/epreston/PSTreeGraph
https://github.com/adamhoracek/KOTree
https://github.com/seletz/CocoaTreeViewExample

https://github.com/epreston/PSTreeGraph/

Related

Agile toolkit atk4 Select Multiple or Listbox field [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I am developing a form using Agile toolkit (atk4), I am trying to do Listbox or multiple selection within Field, can you show me example of how i can do it as i couldn't find any control allow me to do muliple selction or listbox with the agile toolkit .
Thanks.
Check out Form/Control/Dropdown and Form/Control/Lookup form fields.
Also you're very welcome to join our Discord channel and I'm sure community will help you in no time.
Also under /demos folder there are a lot of examples and also you can see them here online https://ui.agiletoolkit.org/demos/form/form.php
And all documentation is under /docs folder too.

Is there a way to retrieve json data based on logic or need of my app? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
In my app,I want to retrieve json data from api,but my json file is too complex and large.so I want specific data according to my app needs every time when I call api and save that data directly into sqlite database.
Then you need to only parse the data which you require, If you want to make this easy for you, use the extension in vs code, called DART DATA CLASS GENERATOR. It makes everything easy.
But, I would strongly suggest if you are new to the programming then learn DATA MODELLING.

Graphic designer / software developer contract [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I need to hire a graphic designer to draw some elements of my iPhone game and I am looking for some templates of draft contracts between software developer and graphic artist.
This is the first game I am developing and I am new to the industry.
What is the typical scenario? Does the artist get paid a fixed sum or also a percentage of the sales?
Any suggestion where to start looking please? Cheers!
You might want to go to the Fourerr website and ask that question.
You can communicate with the Designer until you find exactly what
you need. There is no penalty in talking to as many Designers as
you choose.
http://www.fourerr.com/

Integrating the "open with" menu in my iPhone application [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
There seems to me many tutorials on how to associate files to an application, but I cannot find any information on how to open a file from my application using the iOS registered applications of that file type.
What I want is to give the user, inside my own app, the same "open-with" menu that you can find, for example, in Apple's Mail applicaton - is there any Apple API I can use for this?
Looking at an application like Dropbox, I can see they have implemented a similar feature - so there must be a way.
Thanks!
Have a look at [1], Document interaction, Previewing and opening files. Once you have an instance of UIDocumentInteractionController (using interactionControllerWithURL: and setting your delegate) you can use that to present the open menu, for example by using presentOptionsMenuFromBarButtonItem:animated:. If you provide a delegate you can also use that to supply a view for previewing the foreign document.
[1] http://developer.apple.com/library/ios/#documentation/FileManagement/Conceptual/DocumentInteraction_TopicsForIOS/Articles/PreviewingandOpeningItems.html#//apple_ref/doc/uid/TP40010410-SW1

A good tutorial/sample code for editable table cells? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Apple used to have EditableDetailView as sample code to learn how to do editable cells within UITableView. But this sample is no longer available on the developer site.
Are there any other sample code that's recommended to learn how to do this? I'm looking to have a cell that's editable so it looks similar to the contacts app's detail view.
I had a quick look, and it looks like both CoreDataBooks and SimpleUndo show off some table editing functionality. I can't find anything like EditableDetailView, however. Not sure why they took it down!