Questions tagged [quickdialog]

QuickDialog allows you to create HIG-compliant iOS forms for your apps without having to directly deal with UITableViews, delegates and data sources.

Project Main Site and Documentation
Github Page
Google Group for Q&A

49 questions
0
votes
1 answer

Passing data from ViewControllerA to ViewControllerB(QuickDialog)

I'm new in iOS developer and QuickDialog. I want to pass data from ViewControllerA to ViewControllerB. It's work but in ViewControllerB i have a problem. Example In ViewControllerA.m -(void) goToViewControllerB { ViewControllerB…
Natthawat Sudsang
  • 523
  • 1
  • 5
  • 13
0
votes
1 answer

How to add UIImageView to Qsection in QuickDialog?

I have a picture(UIImageView) and button(UIButton). In this view I use QuickDialogController because it has many Element of Quick dialog in this view. I want to add picture(UIImageView) and button(UIButton) in Section(QSection) of this View. How to…
Natthawat Sudsang
  • 523
  • 1
  • 5
  • 13
0
votes
1 answer

how can I adding quickdialog to my project?

http://escoz.com/open-source/quickdialog In YOUR project configuration: in the Build Phases, Add QuickDialog (the lib, not the example app) as a Target Dependency in the Link Binary With Libraries section, add the libQuickDialog.a library I don't…
0
votes
1 answer

View doesn't scroll to selected element QuickDialog

I'm trying to implement a basic QuickDialog view and the placement of the elements works fine. But when I select an element the view won't scroll it into view. I thought the library would do this by itself or am I missing something? Here is my…
PaperThick
  • 2,749
  • 4
  • 24
  • 42
0
votes
1 answer

QuickDialog: How to create a field for long, multiline text?

I am using QuickDialog to create a form in my iOS app. For one of the items that I am asking users about, I would prefer a multi-line text field as it's an open-ended question (e.g., do you have any questions?). QEntryElement only has a single line,…
Jason
  • 14,517
  • 25
  • 92
  • 153
0
votes
3 answers

How to add a 'cancel' button to a QuickDialog controller?

I am using the regular QuickDialog controller code from their tutorial: QRootElement *root = [[QRootElement alloc] init]; root.title = @"Hello" root.grouped = YES; QSection *section = [[QSection alloc] init]; QEntryElement *hello = [[QEntryElement…
Jason
  • 14,517
  • 25
  • 92
  • 153
0
votes
1 answer

Quickdialog QEnteryElement with multiple lines?

My app uses Quickdialog to create a form for the user. Now i have created an QEnteryElement with an title and placeholder. But when an user types an text that is longer than one line the text with hide behind the title. So how do i create an…
Msmit1993
  • 1,710
  • 4
  • 21
  • 35
0
votes
1 answer

Quickdialog does not build QpickerElement

I'm using the QuickDialog framework. It's an awesome framework but I have a strange problem. I have a JSON that I got back from my Webservice. Everything is working, only it will not build the QPickerElements. I get the following warning in my…
Steaphann
  • 2,797
  • 6
  • 50
  • 109
0
votes
2 answers

SecureTextEntry with QuickDialog and JSON?

I'm trying to get a sample QuickDialog running via JSON. I current have: { "grouped": true, "title": "Hello World", "controllerName": "MySampleController", "sections": [ { "title":"Question:", "elements": [ …
Kyle
  • 17,317
  • 32
  • 140
  • 246
0
votes
1 answer

dismissViewControllerAnimated not work using quickdialog

I am using QuickDialog to push a login form. Everything is working except the view controller can not be dismissed. The code like this: - (void)onLogin:(QButtonElement *)buttonElement { [self loading:YES]; Info *info = [[Info alloc] init]; …
yong ho
  • 3,892
  • 9
  • 40
  • 81
0
votes
2 answers

How can I set the mode of a QDateTimeElement using json?

I'm using QuickDialog to generate forms from JSON, all is well, other than the date/time picker. Unfortunately, the documentation does mention the different types of date pickers available. The sample source also produces forms from code, however I…
Dan Power
  • 1,141
  • 1
  • 12
  • 18
0
votes
1 answer

generic class for quickDialog forms

Let me first start with explaining the situation. I am making a IOS app that is working with a webservice and a webApplication. Take the following example. Let's say we have company X. company X can make all kinds of forms with the webapplication…
Steaphann
  • 2,797
  • 6
  • 50
  • 109
0
votes
2 answers

reading json from webserver for quickDialog

I am using the QuickDialog library, which is awesome! I managed so far to place a json file into my project and display it. But know I want to read it from a webservice. But the function takes a string. You can see the function over here. -…
Steaphann
  • 2,797
  • 6
  • 50
  • 109
0
votes
1 answer

QuickDialog and NSFetchedResultsController for a UITableView

I'm sure this is a stupid question, but unfortunately I'm a noob like a lot of people (well, maybe less so now adays haha...). Anyways... I have an existing project containing a UITableView that is populated via my own class…
Jonathon Hibbard
  • 1,547
  • 13
  • 20
0
votes
1 answer

Searching/filtering on QuickDialog controller

It'd be nice to be able to enable a UISearchBar to filter long lists for QRadio elements. It's possible that I could do this already with a custom subclass of QuickDialogController, but I had a go and it seems like I'd have to alter a lot of the…
blork
  • 2,150
  • 6
  • 26
  • 45