判斷ios裝置中是否安裝了某款應用

benbenxiongyuan發表於2013-10-28

-(BOOL)  checkIfAppISInstalled:(NSString *)urlSchemes
{
    if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:urlSchemes]])
    {

        return  YES;
    }
    else
    {
        return  NO;
    }
}

 

 

相關文章