Questions tagged [xlform]

XLForm is an iOS library to create dynamic table-view forms. Fully compatible with Swift & Obj-C.

XLForm is an iOS library to create dynamic table-view forms. The goal of the library is to get the same power of hand-made forms, but saving time.

XLForm provides a DSL used to create a form. It keeps track of this specification on runtime, updating the UI on the fly.

Following is the link to the library hosted in GitHub.

48 questions
29
votes
3 answers

Existing iOS form framework

Hello I am building forms over and over in iPhone and iPad apps: Custom UITableViewCells for labels with input Localization for labels, placeholder text and section headers Validation that marks the cells red or something and does not allow…
William Entriken
  • 37,208
  • 23
  • 149
  • 195
5
votes
1 answer

Events not triggered in XLForms

I'm using XLForms to build an iOS app. I am having a problem with getting action events. I've tried both block and formSelector but I'm not getting the events. Here is my code: XLFormRowDescriptor * buttonRow = [XLFormRowDescriptor…
JustLearningAgain
  • 2,227
  • 4
  • 34
  • 50
5
votes
2 answers

Changing the value of a XLFORM row

I am using the XLFORM library with swift, I want to clear the value of the row after a successfully request . I am trying to get the row object using self.form.formRowWithTag and changing the value using .value but unfortunately I am not able to get…
yjradeh
  • 233
  • 4
  • 11
4
votes
1 answer

XLForm Custom Row with Image and Text and Push Controller on Action Objective C

I am using XLForm with XLFormRowDescriptor. Everything else is working fine but I have a requirement where I want to use custom row with Images and Text. In addition I need to do XLFormRowDescriptorTypeSelectorPush on the XLFormRowDescriptor action.
Mystery
  • 552
  • 6
  • 14
4
votes
1 answer

XLForm blank on iOS 7.1

I can't find any mention of why forms wouldn't be rendering on iOS 7.1 when they're looking slick on iOS 8. The only glimmer of hope I have is that in one I call [self.tableView reloadData] in viewWillAppear, and that one renders. I'm using a build…
bdalziel
  • 2,005
  • 3
  • 17
  • 32
4
votes
4 answers

XLForm detect change to row value

I'm starting to use the very excellent XLForm project (https://github.com/xmartlabs/XLForm) for iOS, however I've run into something that could possibly really easy to answer yet I can't figure it out. I want to detect the change in a row's value -…
hocker
  • 688
  • 6
  • 18
3
votes
0 answers

XLForm multi level selectors

I'm working on a very old iOS project that is using XLForm. I have to support a dynamic screen flow such as this attached As XLForms is no longer on active development, I thought of asking the question here. I've tried using XLFormOptionsObject and…
nsuinteger
  • 1,503
  • 12
  • 21
3
votes
1 answer

Parse Issue / Expected a type for CGFloat in Swift

I've added XLForm, an Objective C library, to my Swift project using Xcode 6 beta 6. The compiler trips on the method prototype of a protocol definition in XLFormDescriptorCell.h #import ... @protocol XLFormDescriptorCell…
Carl
  • 2,896
  • 2
  • 32
  • 50
2
votes
2 answers

Tools for xlf/xmb files

I am using JIT translation for my project and my translation files are in .xlf format. But clients/partners who will do the translation dont have much of technical knowledge so they might find it difficult to read xlf file and provide…
ishwarya
  • 51
  • 5
2
votes
0 answers

How to set the controllers language in XLForm

I'm using XLForm in this app and the month in the date picker controller is showing in the iPhone language. However, I need it to be shown in a different language, i.e. the app language. How do I do that?
Zakaria
  • 1,040
  • 3
  • 13
  • 28
2
votes
2 answers

XLForm Cell numberOfLines

Any pros out there using XLForm and have any idea on how to configure the cell such that the textLabel.numberOfLines can be changed to 2? I have a very long string that cannot fit in 1 line. Any suggestions or thoughts is really appreciated! Thank…
SilverHood
  • 713
  • 1
  • 8
  • 15
2
votes
3 answers

XLForms integration empty tableView

I've found the library XLFORMS which i wish to use in my app. The problem is that it is not showing any rows and section just an empty tableView. i've in my storyboard created a viewcontroller where i've deleted the view so its just and completely…
user3837816
  • 119
  • 1
  • 9
1
vote
1 answer

How to access placeholder text color of XLFormRowDescriptor

So, I know how to set the placeholder text of a XLFormRowDescriptor item: [rowZIPCodeInput.cellConfig setObject:@"wheee" forKey:@"textField.placeholder"]; I can edit the color of the text using [rowZIPCodeInput.cellConfig setObject:[UIColor…
Austin Gayler
  • 4,038
  • 8
  • 37
  • 60
1
vote
1 answer

Library not found for -lFirebase after installing XLForm

I have a project in Swift where I use some libraries. When I run on the simulators or on the physical device, it runs perfectly. But by the time I try to archive the project to send it to the store, I receive the following error message: ld: library…
thyago stall
  • 1,654
  • 3
  • 16
  • 30
1
vote
0 answers

XLForm: Selector of custom cell not calling method

I am using XLForm in swift and added some "normal" cells and a custom cell to my form like this: XLFormViewController.cellClassesForRowDescriptorTypes().setObject("MyCell", forKey: "MyCellType") section =…
Katharina
  • 1,612
  • 15
  • 27
1
2 3 4