I'm new to Rad Studio so I may be missing something, but I am trying to create an iOS app that just displays a list of data. I currently have an iOS app with a tListView that gets populated by a ClientDataSet, which is populated with data that I hard-coded into an xml file that's on my PC. I want to be able to fill my ListView with the data that is in an excel file instead of xml file so that when I need to add an item I can just add it in the excel file on my PC and rebuild the project. Is this possible? The only way I have found to access excel file data is TADO Connection, but it seems you can not use it on iOS applications. Thank you in advance.
How to use excel file data in an ios app?
566 Views Asked by Brisa Waldbauer At
1
There are 1 best solutions below
Related Questions in IOS
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Is the transactionReceipt data present in dataWithContentsOfURL?
- UIWebView Screen Fitting Issue
- ZXingObjC encoding issues
- iOS: None of the valid provisioning profiles allowed the specific entitlements
- How to hide "Now playing url" in control center
- CloudKit: Preventing Duplicate Records
- Slow performance on ipad erasing image
- Swift code with multiple NSDateFormatter - optimization
- iOS 8.3 Safari crashes on input type=file
- TTTTimeIntervalFormatter always returns strings in English
- How do I add multiple in app purchases in Swift Spritekit?
- Setup code for xibs in iOS. -awakFromNb:
- iOS Voice Over only reads out the title of any alert views
Related Questions in C++BUILDER
- working with IdHTTPProxyServer1
- Borland c++: Error while assigning OnChange to another function?
- Alternative to symlink in C++ Builder
- Embarcadero C++Builder: Transitive project dependencies and includes?
- Embarcadero C++Builder: Separate debug/release DLL references possible?
- How i can set rgb color?
- How to use TThread.Synchronize() to retrieve the text of a TEdit control?
- Indy TCP client in thread
- Special character in Borland c++ Builder
- Kylix on Fedora 21
- update statusbar's text property in the form by another form's button's click event
- add event to component in the run time
- Define and build lapsed timer
- How to manipulate large images in Firemonkey?
- Using TChart in C++Builder XE7
Related Questions in RAD-STUDIO
- Unit 'FMX.WebBrowser.Delegate.Cocoa' not found
- How to navigate between procedure / function heading and main code
- Omnithread unobserved nested thread not released when expected
- Numerical value returns differ from actual
- RAD studio 10.3.3 could not create java virtual machine
- impossible to execute the project while a host application is not defined, delphi rad studio
- Is there any Delphi Keyboard Shortcuts to Switch the Cursor-Select between [Code Editor] and [Projects Window] of the Opened Source Code File?
- "We have detected that your System Path is close to reaching the Windows limit" when installing RAD Studio (Delphi and C++ Builder)
- C++ Builder 12.0 does NOT show Android, iOS or MacOS target platforms
- Does RAD Studio (Delphi) support inheritdoc tag?
- Delphi IDE stuck on "Opening project" dialog
- Cant build delphi package dclP4DEnvironmentProject.bpl for PythonEnvironments (P4D)
- Is there any way to enhance syntax highlighting in RAD Studio code editor?
- How to complete an offline installation of RAD Studio (10.4.2 ), when the internet connection(being online) is available?
- Inherited Delphi 2007 Project and need to compile it
Related Questions in TLISTVIEW
- Displaying images from db on the go
- Make TListView group headers unclickable
- TListView change color from existing item android platform
- TListView Caption-Cell of last row doesn't get colored
- How to set the ViewportPostion of the item selected in TListView inside the TVertScrollBox
- How to handle default column autosizing in TListView with OwnerData true
- In Delphi, how can I force tListView to always show selected row, even when not focused.
- Event after Resizing TListView column
- Delphi - Get and Set Scrollbar Position of a ListView
- How change text color in a column in TTNTListView?
- How may I add additional data for each existing item in a `TListView`?
- How to refresh Livebinding for TListView and TFDMemTable?
- Delphi Firemonkey TListview ~ change color of TListItemText when item is selected
- Set TlistView in Delphi FMX to show up horizontally
- Creating TOpenDialog manually in C++ Builder XE 8 (firemonkey)
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I strongly recommend against using Excel files for this purpose. There are several reasons for that:
If your data is fundamentally a hierarchy (a tree) of various objects with different sets attributes, use JSON or XML.
If your data is rather a set of similar objects (a table), use CSV.
Whether you choose JSON, XML or CSV, parsing them will be a much easier task for a mobile app.
If you need a convenient GUI to manually update a file like that, consider using Visual Studio Code with plugins. Or, in case of CSV, you can actually use Excel (just save the final result back to .csv rather than to .xlsx).