请选择 进入手机版 | 继续访问电脑版
  • 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

NativeiOSControlDelphiXE4

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

Used in the Delphi Firemonkey Platform is very large, and is well organized. Of course Button, alone Firemonkey, and written.However, under certain circumstances in the OS the Native Control, because you will inevitably need to use a different API, about how to use the Native Control to learn.

//
//  XE4 & iOS Button Example
//
//   http://blog.naver.com/simonsayz
//
// Ref.
//   SampleNiblessApp  :  http://rvelthuis.de/zips/sampleniblessapp.7z
//   CCR.NSAlertHelper :  http://code.google.com/p/delphi-foundations/
//   Delegate Example  :  http://blogs.embarcadero.com/teamj/2013/05/09/3817/
//   XE2, Free Pascal  :  http://blog.naver.com/simonsayz/120162838290
//   Source to Html    :  http://www.duketown.com/marcel/hyperdelphi.shtml
//
unit Unit1;

interface

uses
  System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
  FMX.Types, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.StdCtrls,
  FMX.Platform.iOS, FMX.Layouts, FMX.Memo,
  //
  System.TypInfo,
  Macapi.ObjectiveC,
  Macapi.ObjCRuntime,
  iOSapi.CocoaTypes,
  iOSapi.foundation,
  iOSapi.uikit,
  iOSapi.CoreGraphics;

type
  //
  IBtnDelegate = interface(NSObject)
   procedure BtnPressed; cdecl;
  end;
  //
  TBtnDelegate = class(TOCLocal)
  Private
   Finx   : Integer;
   FMemo  : TMemo;
  Public
   constructor Create( inx : integer; memo : TMemo );
   function  GetObjectiveCClass : PTypeInfo; override;
   procedure BtnPressed; cdecl;
  end;
  //
  TForm1 = class(TForm)
    Button1: TButton;
    Memo1: TMemo;
    procedure Button1Click(Sender: TObject);
  private
  public
   BtnDelegate : TBtnDelegate;
  end;

var
  Form1: TForm1;

implementation

{$R *.fmx}

Constructor TBtnDelegate.Create ( inx : integer; memo : TMemo );
 begin
  inherited Create;
  Self.Finx  := 10;
  Self.Fmemo := Memo;
 end;

function  TBtnDelegate.GetObjectiveCClass : PTypeInfo;
 begin
  Result := TypeInfo(IBtnDelegate);
 end;

//
procedure TBtnDelegate.BtnPressed;
 begin
  inc(Finx);
  FMemo.Lines.add('iOS Btn Pressed '+IntToStr(Finx));
 end;

//
procedure TForm1.Button1Click(Sender: TObject);
 Var
  Btn         : UIButton;
begin
 //
 Memo1.Lines.Add('FMX Btn Pressed');
 //
 Btn := TUIButton.Wrap( TUIButton.OCClass.buttonWithType(UIButtonTypeRoundedRect) );
 //
 Btn.setFrame ( CGRectMake(40,130,240,100) );
 Btn.setTitle (NSStr('iOS UIButton Pressed'),UIControlStateNormal);
 //
 BtnDelegate := TBtnDelegate.Create(10,Memo1);
 //
 Btn.addTarget( BtnDelegate.GetObjectID,       // target
                sel_getUid('BtnPressed'),      // action
                UIControlEventTouchDown);      // event
 //
 WindowHandleToPlatform(Self.Handle).View.addSubview(Btn);  //亮点啊!!!cnsoft mark

end;

end.

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Matlab 矩阵函数发布时间:2022-07-18
下一篇:
MATLAB中矩阵方程求解的实现发布时间:2022-07-18
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap