日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 运维知识 > Android >内容正文

Android

如何检查对象的类型[iOS/Android/Windows Phone]

發(fā)布時間:2025/4/16 Android 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 如何检查对象的类型[iOS/Android/Windows Phone] 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

iOS

使用 NSObject 基類的 isKindOfClass: 方法。

聲明:

- (BOOL)isKindOfClass:(Class)aClass
描述:
Returns a Boolean value that indicates whether the receiver is an instance of given class or an instance of any class that inherits from that class. (required)

參數(shù):

aClass: A class object representing the Objective-C class to be tested.

返回值:

YES if the receiver is an instance of aClass or an instance of any class that inherits from aClass, otherwise NO.

示例代碼:

for?(UIView?*ctrl?in?[self?childViewControllers])?{
????if?([ctrl?isKindOfClass:[UITextField?class]])?{
????????[(UITextField*)ctrl?setText:@""];
????}
????else?if?([ctrl?isKindOfClass:[UISwitch?class]])?{
????????[(UISwitch*)ctrl?setOn:NO];
????}
}

?

Android

The instanceof operator compares an object to a specified type. You can use it to test if an object is an instance of a class, an instance of a subclass, or an instance of a class that implements a particular interface.

示例代碼:

void?checkforTextView(View?v)
{
??? if(v?instanceof?TextView)
????{
????????//?This?is?a?TextView?control
????}?else?{
????????//?This?is?not?a?TextView?control
????}
}


Windows Phone

C# 的 is 操作符關(guān)鍵字。Checks if an object is compatible with a given type. An is expression evaluates to true if the provided expression is non-null, and the provided object can be cast to the provided type without causing an exception to be thrown.

示例代碼:

foreach?(UIElement?ctrl?in?this.ContentPanel.Children)?{
????if?(ctrl?is?TextBlock)?{
????????//TextBlock
????}
????else?if?(ctrl?is?TextBox)?{
????????//TextBox
????}
}

?

作者:黎波
博客:http://bobli.cnblogs.com/
日期:2012年3月14日

轉(zhuǎn)載于:https://www.cnblogs.com/bobli/archive/2012/03/14/2395565.html

總結(jié)

以上是生活随笔為你收集整理的如何检查对象的类型[iOS/Android/Windows Phone]的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。