* Added UISegmentedControl

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2862 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
loesje_
2013-12-17 21:03:56 +00:00
parent f1c9fb3597
commit b0c00c63e4
4 changed files with 226 additions and 3 deletions

View File

@ -155,7 +155,7 @@ procedure Register;
begin
FormEditingHook.RegisterDesignerMediator(TNSObjectDesignerMediator);
FormEditingHook.RegisterDesignerMediator(TUIResponderDesignerMediator);
RegisterComponents('iOS',[UIWindow,UINavigationController,UIButton,UILabel,UITextField,UITableView,UISearchBar,UIView,UIViewController, UIProgressView]);
RegisterComponents('iOS',[UIWindow,UINavigationController,UIButton,UILabel,UITextField,UITableView,UISearchBar,UIView,UIViewController, UIProgressView, UISegmentedControl]);
GiOSEventHandlers := TiOSEventHandlers.Create;
@ -178,6 +178,7 @@ begin
SetFakeUnitname(UINavigationController);
SetFakeUnitname(UIViewController);
SetFakeUnitname(UIProgressView);
SetFakeUnitname(UISegmentedControl);
end;
{ TiOSEventHandlers }