Files
NXKit/app/Screens/IBTestController/IBTestController.cpp
T
2025-02-23 19:56:34 +01:00

23 lines
569 B
C++

//
// Created by Daniil Vinogradov on 28/01/2025.
//
#include "IBTestController.h"
IBTestController::IBTestController() {
setTitle("IB Test VC");
}
void IBTestController::loadView() {
auto nib = UINib::fromRes("Layout/TestScreen.xml");
setView(nib->instantiate(&idStorage));
}
void IBTestController::viewDidLoad() {
// text()->setText("BLAH BLAH BLAH BLAH");
// text()->setFontSize(24);
// text()->setTextColor(UIColor::systemOrange);
button()->setTintColor(UIColor::systemOrange);
button()->applyStyle(NXKit::UIButtonStyle::filled);
}