小编ilh*_*ctn的帖子

从我的应用程序启动应用程序的特殊API

我在这里问了一个问题,但答案指导我开了一个新话题.不久,我想从我的应用程序在Appstore上启动一个免费的应用程序,但我想要启动的应用程序没有URL方案.关于我的另一个问题的评论说,使用一些特殊的API,如SBSLaunchApplicationWithIdentifier或类,如UIDocumentInteractionController使它成为可能.任何人都可以帮我如何从我的应用程序启动一个应用程序.提前致谢

objective-c ipad ios

10
推荐指数
1
解决办法
3849
查看次数

如何命名代码块并以不同的方法调用它?

我使用Grand Central Dispatch方法在队列中执行我的应用程序.我决定在该队列的计算中按钮的帧.我希望我的应用程序重新绘制其scren并在旋转后计算新帧.这是我做的一些伪代码解释:

 CGFloat a=123, b=24;
     dispatch_async(drawingQue, ^{
        //needed loops to get the total button count-how many ones will be drawn et..
        for(int x=0;x<someCount<x++){
           for(int y=0;y<anotherCount;y++){

        //needed frame&name ect assingments

        button.frame= CGRectMake(x+y, x-y, a, b);
        [button setTitle:@"abc"];}}
        };
Run Code Online (Sandbox Code Playgroud)

在这里我想要的是,我怎么能给这个块一个名字并重新使用它

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
} 
Run Code Online (Sandbox Code Playgroud)

委托方法?例如,如果旋转是横向的,我想使用a=234而不是123 ..任何帮助请.提前致谢..

objective-c ipad objective-c-blocks xcode4

7
推荐指数
1
解决办法
1481
查看次数

Windows 上的 LDAP 身份验证

我安装了 64 位 Windows 平台和 Postgresql 8.4(如 Apache,EnterpriseDB-ApachePHP 安装在 Pstgres 上)。我需要使用 Active Directory(或 LDAP?)凭据对系统进行身份验证,但即使我启用了 LDAP 并重新启动了 Apache错误日志我看到 PHP Fatal error: Call to undefined function ldap_connect() in path/to/my/phpfile .. 我使用的 PHP 脚本如下,

<?php

$user = $_POST["myUserName@mydomain.com"];
$pass = $_POST["muPassword"];
//in our system, we already use this account for LDAP authentication on the server above
$ldap_serv = 'ldap://192.168.69.10';
$ldap_port = '389';
$lc = ldap_connect($ldap_serv, $ldap_port);
ldap_set_option($lc, LDAP_OPT_REFERRALS, 0);
ldap_set_option($lc, LDAP_OPT_PROTOCOL_VERSION, 3);
$ldapbind = ldap_bind($lc,$user,$pass);
if ($ldapbind == false) {
  echo …
Run Code Online (Sandbox Code Playgroud)

php apache authentication ldap

4
推荐指数
1
解决办法
1万
查看次数

如何在后台保持一段代码?

我搜索了这个话题,主要是我面对Apple的限制.我需要每分钟控制一次我的服务器,如果有变化,则发出本地通知.我需要的是,如何让计时器(NSTimer)在后台保持活动状态(或者当设备锁被激活时).任何想法请.谢谢

background-process nstimer ios

3
推荐指数
1
解决办法
421
查看次数

如何从非实例化的类调用该对象

关于重载的手册,我无法掌握其中一个线程.代码如下:

<?php

class a
{
   function __get($v)
   {
       $this->$v = new $v;
       return $this->$v;
   }
}

class b
{
    function say($word){
        echo $word;
    }
}
$a = new a();
$a->b->say('hello world');

// echos 'hello world'
?> 
Run Code Online (Sandbox Code Playgroud)

正如在评论中指出的那样,它与你的世界相呼应.但即使b尚未实例化,它是如何被调用的?请帮忙,链接到手册在这里,条目属于gmail dot com中名为trash80的用户

php overloading object

2
推荐指数
1
解决办法
107
查看次数

如何在绘图前清除子视图的内容

我使用两个块动态地在子视图上绘制一些按钮.一个计算纵向模式的帧,另一个计算景观.它工作得很好但是当我旋转时,它会写入旧的.因此,我的一些按钮来了两次.这是我检测oriantation的代码:

//i have defined blocks in viewDidLoad: and everything is ok till here
    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
    {
        if(interfaceOrientation == UIInterfaceOrientationPortrait || interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown)
        {
            dispatch_async(dispatch_get_main_queue(), PortraitBlock);        
        }       
        else 
        { 
            dispatch_async(dispatch_get_main_queue(), LandscapeBlock);
               }
        return (interfaceOrientation == UIInterfaceOrientationLandscapeRight || 
                interfaceOrientation == UIInterfaceOrientationPortrait || 
                interfaceOrientation == UIInterfaceOrientationLandscapeLeft ||
                interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown);
    }
Run Code Online (Sandbox Code Playgroud)

现在,我如何清理视图我添加按钮?

注意:我在UIView对象上添加按钮,该对象也在UIScrollView对象上

uibutton uiview ipad ios

1
推荐指数
1
解决办法
4618
查看次数

PHP将邮件发送到Excel列表

我有一个很长的Excel列表,其中包含用户名,邮件地址和PIN号.我要生成一个自动的邮件,如"亲爱的$name,你的密码是$pin"发送至$mail何处$name,$mail以及$pin变量将来自Excel文件.(有三列)

任何人都可以分享任何想法或示例代码吗?

编辑赏金 这是我的csv文件的丝网印刷.我想从csv文件中读取数据为二维数组并填充电子邮件.

我的csv文件

php phpexcel

1
推荐指数
1
解决办法
2611
查看次数

SoapClient与SoapServer的连接

我需要从php连接到SOAP服务器,我阅读了很多文档,示例和教程,但我仍然无法对我的服务器进行身份验证.我完成了以下工作:

 $agencyNumber = 7818619810;
    $fullTransmission = false;
    //$context = array('header' => 'Content-type: application/soap+xml; charset=utf-8');
    $params = array( 'agencyNumber'     => 7818619810, 'fullTransmission' => 0/*,$context*/);

    $client = new SoapClient("http://link/to/server?wsdl");
   $test =  $client->__getFunctions();
    var_dump($test );// returns the functions my supplier provides, as well __getTypes() gives a bunch of variable arrays ect..
    $response = $client->__soapCall('GetTransmissionTicket',array($params) );//line 16 which is mentioned on error print
    var_dump($response);
Run Code Online (Sandbox Code Playgroud)

即使我设置$context,当我尝试运行时,我得到以下错误:

致命错误:未捕获的SoapFault异常:[HTTP]无法处理消息,因为内容类型为'text/xml; charset = utf-8'不是预期的类型'application/soap + xml; 字符集= UTF-8' .在C:\ xampp\htdocs\xml\inc\_ connection_test.php:16堆栈跟踪:#0 [内部函数]:SoapClient-> __doRequest('http:// interfac ...','..//my- provider ...',1,0)#1 …

php soap soap-client

1
推荐指数
1
解决办法
1万
查看次数