mirror of
https://github.com/XITRIX/NXKit.git
synced 2026-05-30 11:46:52 +00:00
15 lines
335 B
C++
15 lines
335 B
C++
#include <UIApplicationDelegate.h>
|
|
#include <UIKit.h>
|
|
|
|
namespace NXKit {
|
|
|
|
void UIApplicationDelegate::applicationNeedsXIBRegistration(UIApplication* application) {
|
|
REGISTER_NIB(UIView)
|
|
REGISTER_NIB(UILabel)
|
|
REGISTER_NIB(UIControl)
|
|
REGISTER_NIB(UIButton)
|
|
REGISTER_NIB(UIImageView)
|
|
REGISTER_NIB(UIScrollView)
|
|
}
|
|
|
|
} |