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
1
vote
0 answers

QuickDialog Line of Code/Detect Value Change

I am working with QuickDialog OpenSource and I am not sure how to detect when value has changed for each of the QElement cells like QPickerElement. I looked into the examples and they had: __weak QPickerElement *_sysPicker = self.systemPicker; …
Alan
  • 9,331
  • 14
  • 52
  • 97
1
vote
0 answers

QuickDialog not showing dates in correct way

I am using quickdialog to consume dynamic forms. A webservice builds up a form with the quickdialog JSON. For a QDateTimeInlineElement he provides me this JSON. {"type":"QDateTimeInlineElement","title":"datum","placeholder":"vul…
Steaphann
  • 2,797
  • 6
  • 50
  • 109
1
vote
1 answer

Need a QNumberElement for QuickDialog

I have read all the classes of QuickDialog. But I can't find a element suits my need. I need a element that the value is NSNumber, and the keyboardType is UIKeyboardTypeNumberPad. Maybe I didn't notice one. Could someone tell me?
yong ho
  • 3,892
  • 9
  • 40
  • 81
1
vote
1 answer

self.quickDialogTableView reloadData not reloading data

I have a simple but custom section header in which I am showing dynamic content in a label. However, when I pop a VC and in the active VC I run [self.quickDialogTableView reloadData] in viewWillAppear, the data is not being updated to the correct…
mcardleliam
  • 158
  • 8
1
vote
0 answers

Xcode Sending mail via PHP. Send failure does not produce an error

Can anyone help me with this rather big problem. I have a booking form I designed with QuickDialog, that sends a request to a php file using the mail() function on my web server to send an email. It all works well, until it comes to errors. If I…
Jayden Smith
  • 13
  • 1
  • 2
1
vote
3 answers

QuickDialog login form being the first loading controller

I recently started iOS development, and had an objective to create a login view. I encountered QuickDialog which I think will do the job. In their example, they provide the following code: QRootElement *root = [[QRootElement alloc] init]; root.title…
Karan
  • 14,824
  • 24
  • 91
  • 157
1
vote
1 answer

QDynamicDataSection in QuickDialog

Currently, I struggle with the QDynamicDataSection of QuickDialog. I want to populate a dynamic section. When I run the following code, taken from the demo, I get a dynamic section populated with several instances of the template, i.e. "Something…
Matthias
  • 8,018
  • 2
  • 27
  • 53
1
vote
1 answer

QuickDialog within frame

I'm trying to employ QuickDialog for an iOS 5 iPad app which uses storyboards, but I guess the question would broadly apply to UITableViewController as well. My understanding is that when I'm initialising the QRootElement, the tableview that QDC…
lucianf
  • 547
  • 7
  • 17
1
vote
1 answer

QuickDialog/QuickDialog.h file not found xcode 4.2

Hy, I want to use the QuickDialog library but gives me error. The step that I made: download it from github copy the directory into my project's directory add QuickDialog.xcodeproject my project --> Build Phrases: Target dipendencies: add…
1
vote
1 answer

How do I fix this build error the on QuickDialog project?

I'm planning to use QuickDailog in my project, I cloned the project from github here. I'm trying to run the samples, but when I build the project I get following error file:///QuickDialog/quickdialog/QuickDialogTableView.m: error: Semantic Issue:…
Prashant Cholachagudda
  • 13,012
  • 23
  • 97
  • 162
0
votes
0 answers

Compilation Error Using QuickDialog in a Swift iOS project

I am new to iOS. I am trying to use QuickDialog in an iOS project. Following is my podfile content source 'https://github.com/CocoaPods/Specs.git' platform :ios, '7.0' inhibit_all_warnings! target 'MyLife' do pod 'QuickDialog', '~> 1.0' pod…
Mehedi
  • 394
  • 1
  • 3
  • 19
0
votes
1 answer

Detect which root element will appear in QuickDialog

A key difference for me of QuickDialog is that a single .m file (settingsFormBuilder.m) can carry all of the code for multiple views in the navigation controller under the one root, as such it seems to get linked to one view controller…
msec
  • 252
  • 5
  • 20
0
votes
1 answer

Using UIRefreshControl with QuickDialog

How should one use a UIRefreshControl with QuickDialog (https://github.com/escoz/QuickDialog)? The way I interpret the docs, the control has to be used with a UITableViewController, but I don't think QD uses one.
Josh The Geek
  • 1,203
  • 12
  • 24
0
votes
1 answer

How do I add classes found in the "extras" folder of QuickDialog?

With a recent update, some functionality of QuickDialog such as the QPickerElement was moved out of the main project and into an "extras" folder. What is the right way to add this functionality back into a project?
GoldenJoe
  • 7,874
  • 7
  • 53
  • 92
0
votes
1 answer

Inserting a QSection to QRootElement at runtime in QuickDialog iOS

I am building a form with QuickDialog library in iOS. Here it is possible to insert any QElement at an index into any QSection dynamically with this method - (void)insertElement:(QElement *)element atIndex:(NSUInteger)index; But I found no way to…
ayon
  • 2,180
  • 2
  • 17
  • 32