The Fiori Component¶
The SAPFiori framework includes a number of UI components that implement the Fiori Design Language. These controls inherit from the Apple UIKit
components, and may be utilized programmatically, or via Interface Builder in *.xib
or *.storyboard
files.
Installation¶
- Add SAPFiori.framework and SAPCommon.framework to your Xcode project.
- Add the framework files to the Embedded Binaries section of the General tab for project configuration.
The frameworks should be linked to your project, and appear under the Link Binary with Libraries and Embedded Frameworks sections in the Build Phases tab of your App’s Xcode project settings.
Component Categories¶
Select from the following categories on the left for implementation details, or related links below for additional design guidelines:
ListFloorplan
(API) – Also see the SAP Fiori Design Guidelines for List ReportObjectFloorplan
(API) – Also see the SAP Fiori Design Guidelines for Object.- Onboarding Patterns (API) – Also see the SAP Fiori Design Guidelines for Onboarding.
- Object Views (API) – Also see the SAP Fiori Design Guidelines for Object Cell and
ObjectHeader
. - Contact Views (API) – Also see the SAP Fiori Design Guidelines for Contact Cell.
- Timeline Views (API) – Also see the SAP Fiori Design Guidelines for Timeline View and Timeline Preview.
- KPI View (API) – Also see the SAP Fiori Design Guidelines for KPIs.
- Grid View (API) – Also see the SAP Fiori Design Guidelines for Grid Layout.
- Map View (API) – Also see the SAP Fiori Design Guidelines for Map.
- Create and Filter Patterns (API) – Also see the SAP Fiori Design Guidelines for Create and Filter patterns.
- Attachments Controller (API) – Also see the SAP Fiori Design Guidelines for Attachment type.
- Collection Views (API) – Also see the SAP Fiori Design Guidelines for Collection View.
- Overview Patterns (API) – Also see the SAP Fiori Design Guidelines for Header and Overview.
- Feedback Indicators (API) – Also see the SAP Fiori Design Guidelines for Feedback.
- Search Bar and Barcode Scan (API) – Also see the SAP Fiori Design Guidelines for Search and Scan View.
- Branding and Theming (API) – Also see the SAP Fiori Design Guidelines for Branding.
- Calendar View (API) - Also see the SAP Fiori Design Guidelines for Calendar.
- Hierarchy View (API) - Also see the SAP Fiori Design Guidelines for Hierarchy.
- Page View (API) - Also see the SAP Fiori Design Guidelines for Sibling Navigation.
Additional Component Notes¶
The Following Components Inherit From Apple UIKit
UITableView
and UITableViewCell
¶
-
FUIBaseTableViewCell
andNibDesignableFUIBaseTableViewCell
- Base classes used in most SDK table view cells, supporting Fiori cell selection style (isMomentarySelection
), and enabling per-cell cell separator removal at the edges of table view sections. -
FUIObjectTableViewCell
- Standard table view cell for displaying general business object data. The cell contains a left stack of icons, an image (square or circle), three levels of text (headline, subheadline, and footnote), a description (only shows up on regular horizontal size mode), and two status attributes (text or icon). -
FUIContactCell
- Contains contact information, including an image, several labels, and an activity component. -
FUITimelineCell
,FUITimelineMarkerCell
, andFUITimelinePreviewTableViewCell
- Displays a list of items (objects, events, or posts) in chronological order.FUITimelinePreviewTableViewCell
is an auto-sizing table view cell container for aFUITimelinePreviewView
instance. -
FormKit
cells: A collection ofUITableViewCell
subclasses, that are used to construct table views for creating or editing business objects, or for building filter controls.FormKit
cells provide change handlers to respond to user interaction. Those extendingFUIInlineValidationTableViewCell
also support inline validation views.
-- FUITitleFormCell
-- FUINoteFormCell
-- FUIKeyValueFormCell
-- FUISimplePropertyFormCell
-- FUIDatePickerFormCell
-- FUIDurationPickerFormCell
-- FUIValuePickerFormCell
-- FUISwitchFormCell
-- FUISegmentedControlFormCell
-- FUIFilterFormCell
-- FUIListPickerFormCell
-- FUIAttachmentsFormCell
-
FUIGridTableViewCell
- A table view cell for displaying aFUIGridRowItem
--common for the List Report floorplan. -
FUIHierarchyItemTableViewCell
- A variant ofUITableViewCell
to show a collection item's business object content and hierarchy information (e.g. number of children in its next level).
Important:
UITableViewCell
subclasses in the SAPFiori framework are designed to be used with iOS'AutoLayout
engine. To enableAutoLayout
to calculate the correct height of cells, developers should:
- Set the table view’s
estimatedRowHeight
property to a number that is close to the expected height at runtime. This value will be used, before the cell's dimensions are calculated, to set the table view's scrollbar position and height.- Set the table view's
rowHeight
property toUITableViewAutomaticDimension
, to indicate that theAutoLayout
engine should calculate the correct height for the cell, based upon each cell's content.
The Following Components Inherit From Apple UIKit
UICollectionView
and UICollectionViewCell
¶
FUIObjectCollectionViewCell
- This subclass ofUICollectionViewCell
matches the API of theFUIObjectTableViewCell
and is commonly used to display a collection of general business objectsFUISimpleCollectionViewCell
- A basicUICollectionViewCell
containing an image view and label.FUISimplePropertyCollectionViewCell
- This subclass ofUICollectionViewCell
matches the views API of theFUISimplePropertyFormCell
and displays a horizontally-aligned key label and value text field.FUIKeyValueCollectionViewCell
- This variant ofUICollectionViewCell
contains a vertically-stacked key label and a value text field.FUITimelineCollectionViewCell
- This variant ofUICollectionViewCell
is typically rendered internally by theFUITimelinePreviewView
component.FUIWhatsNewCollectionViewCell
- This variant ofUICollectionViewCell
is used to show new feature items inFUIWhatsNewDetailListController
. It has a similar setup and layout toFUIObjectCollectionViewCell
.FUIHierarchyCollectionItem
- This variant ofUICollectionViewCell
is used to show a collection item's business object content and hierarchy information (e.g. number of children in its next level).
The Following Layouts Inherit From Apple UIKit
UICollectionViewFlowLayout
¶
FUIHorizontalScrollCollectionViewLayout
- A flow layout that aligns all items for a section into a single row.FUIHorizontalFlowCollectionViewLayout
- A flow layout that provides the option to scale collection cell items' dimensions upwards, to fill the collection content width.FUIStandardAutoSizingColumnFlowLayout
- A flow layout that arranges collection cell items into a grid, where each row is top-aligned and items' widths are stretched to fill the specified number of columns.FUIKeyValueFlowLayout
- A variant ofFUIStandardAutoSizingColumnFlowLayout
with predefined item spacing to implement the SAP Fiori design language for arrangingFUIKeyValueCollectionViewCell
items.FUITimelineCollectionViewHorizontalFlowLayout
- A variant ofFUIStandardAutoSizingColumnFlowLayout
that resizes collection view cell items to lay them out according to a specified number of columns. All items on the same row are resized to have an identical cell height to the height of the tallest cell in that row.FUIHierarchyCollectionViewLayout
- A concrete layout class that manages the layout of the hierarchy view.
The Following Components Inherit From Apple UIKit
UIView
¶
FUIObjectHeader
- Header-style view with API similar toFUIObjectCell
pattern. It is typically added toUITableView
as itstableHeaderView
.FUIProfileHeader
- Header-style view with API similar toFUIContactCell
pattern. It is typically added toUITableView
as itstableHeaderView
.FUIKPIHeader
- Header-style view for displaying sets ofFUIKPIView
instances. It is typically added toUITableView
as itstableHeaderView
.FUIKPIView
- AUIView
that enables a developer to present "KPI" information in a formatted manner consistent with the SAP Fiori design language.FUITimelinePreviewView
- AUIView
contains a header and a collection view for showing an excerpt of your project's milestones in a convenient linear visual presentation.FUIActivityControl
- A standalone component that supports user activities, such as phone, email, message, andvideoCall
. Used natively inFUIContactCell
, and typical inFUIProfileHeader
designs.FUIInlineValidationView
- An auxiliary view that contains a validation message forFormKit
cells. Used natively withinFUIInlineValidationTableViewCell
.FUIBannerMessageView
- An animated view for presenting notifications and displaying status. Pins toUINavigationBar
, orFUIObjectHeader
.FUIHierarchyView
- A view that manages a collection of items in a multi-column layout.FUISegmentedControl
- A horizontal control made up of multiple segments, each segment functioning as a discrete button.FUISignatureCaptureView
- A view to be displayed in theFUISignatureCaptureController
.
The Following Utility Classes Extend Native UIKit
Types¶
Note: With the introduction of the closure-styled
observe
API in Swift 4, and support for SmartKeyPaths
SE-0161, it is recommended to use the nativeKVO
technique for change observation, rather than theonChangeHandler
closure API inFUIImageView
,FUILable
, andFUITextField
, as the native API is very similar and more flexible.
FUIImageView
- An enhancedUIImageView
that supports applying a circular mask to an image, and also a change handler on theimage
property.FUILabel
- Extension toUILabel
supportinginsets: UIEdgeInsets
inintrinsicContentSize
calculation and also a change handler on thetext
property.FUITextField
- Extension toUITextField
supporting a change handler on thetext
property.FUISearchBar
- Extension toUISearchBar
supporting a native barcode scanner property.FUINavigationBar
- Extension toUINavigationBar
supporting a simple style technique to match the SAP Fiori design language.
Onboarding and Activation¶
The following user activation and onboarding components allow you to quickly integrate all required onboarding steps into apps and connect to SAP Mobile Services. The onboarding framework supports various onboarding scenarios, including: login screen with demo mode, SAP Identity and Authentication Service with OAuth, touch ID, and passcode.
FUIWelcomeScreen
- This screen supports application onboarding and displays the application name, instructions on how to start the activation process, and provides the option to run the application in demo mode. The screen comes in two versions: version 1 has no Activation button; version 2 provides an Activation button after the user is redirected to the screen that provides sign in.FUIPasscodeCreateController
,FUIPasscodeInputController
, andFUIPasscodeChangeController
- Provide passcode and Touch ID/Face ID screens to set up a passcode and enable iPhone native biometric ID for application authentication.FUIMultiUserPasscodeController
- AFUIPasscodeController
subclass for the multi-user onboarding use case.
Floorplan¶
Floorplan provides a quick and easy way to build a full-screen list or sectioned page that comply with List Report
and Object
patterns, respectively, in the SAP Fiori Design Guidelines. Because floorplan comes with boilerplate code for predefined UI elements and layout, the developer can focus on data binding and user interaction at development time.
FUIListFloorplan
- A genericUITableViewController
subclass for displaying business objects of the same type in a list.FUIObjectFloorplan
- A genericUITableViewController
subclass for displaying the properties of a business object.FUIObjectEditingFloorplan
- A floorplan for editing a business object.
Chart¶
The SDK provides a variety of chart types to help visualize your analytic data. The supported chart types are:
1 2 3 4 5 6 7 8 9 10 11 12 |
|
In addition, chart floorplan is also a very helpful class when it comes to building a full-screen charting interface that displays additional information, such as chart title, summary view, and legend.
FUIChartView
- AUIView
subclass that displays charts.FUIChartViewDataSource
- An object that provides data to the chart view.FUIChartViewDelegate
- An object for managing chart selections and customization.FUIChartFloorplanViewController
-UIViewController
implementation of theFUIChartFloorplanView
.FUIChartFloorplanTableViewCell
-UITableViewCell
container of theFUIChartFloorplanView
.FUIChartFloorplanView
- View implementation of the chart floorplan.FUIChartTitleView
- Chart title component of the chart floorplan.FUIChartTitleTableViewCell
-UITableViewCell
container of theFUIChartTitleView
.FUIChartLegendView
- Legend view component of the chart floorplan.FUIChartLegendTableViewCell
-UITableViewCell
container of theFUIChartLegendView
.
Other Components¶
FUIFeedbackScreen
- AUIViewController
used to display a feedback screen for the application.FUIWhatsNewViewController
- AUIViewController
used to display new features for the application.FUIWhatsNewDetailPageController
- Page style controller to be used inFUIWhatsNewViewController
.FUIWhatsNewDetailListController
- List style controller to be used inFUIWhatsNewViewController
.FUISignatureCaptureController
- AUIViewController
used to capture the user's signature.
Branding and Theming¶
Controls in the SAPFiori framework may optionally be styled using a CSS-like stylesheet. The SAPFiori
framework integrates the open-source NUI
framework, which exposes styling properties of UIKit
APIs as CSS-like style attributes. The NUI
library is embedded in the SAPFiori
framework, so no installation is required.
UI components in SAPFiori
are styled programmatically by default and are also assigned a list of style classes that are interpretable by the NUI
engine. These style classes may be read or modified via the styleClassPath
property.
To override the default style of a control at runtime, use a stylesheet (an *.nss
file) to modify the class definitions in the stylesheet for the relevant style classes, and then activate the NUI
engine at runtime by supplying the stylesheet.
See the
NUI
README
for additional information about setting style syntax in the stylesheet.
Developers may assign style classes to any UIView-inheriting
control.
Iconography¶
The SAP Fiori for iOS icon library (FUIIconLibrary
) identifies a standard subset of SF Symbols that are aligned with the SAP Fiori design language. This allows us to have a robust collection that offers the familiarity, accessibility, and cohesiveness SAP customers expect across different platforms while still being consistent with the iOS experience.