小编Gau*_*rav的帖子

安装gem或更新RubyGems失败,出现权限错误

尝试安装gem(gem install mygem)或更新RubyGems(gem update --system)失败,出现此错误:

ERROR:  While executing gem ... (Gem::FilePermissionError)
You don't have write permissions for the /Library/Ruby/Gems/2.0.0 directory.
Run Code Online (Sandbox Code Playgroud)

任何人都知道如何解决这个问题?

ruby macos rubygems

546
推荐指数
19
解决办法
46万
查看次数

Windows 10 Pro -version 1803蓝牙配置文件访问

我们希望在Visual Studio 2017中使用C#在我们的WPF应用程序中访问和使用蓝牙配置文件.

问题详情:

平台:Windows 10 Pro - 版本1803.

问题简介:我们正在尝试通过桌面(c#)连接的手机访问蓝牙配置文件,但是在Windows 10上,配置文件显示启用但配置文件无法正常工作,例如:HFP连接,但是,没有听到语音

我们已经在以下蓝牙设备上测试过:

1.Bluetooth CSR 4.0 Dongle(CSR8510 A10)(注意:此蓝牙连接并显示HFP并按预期工作,但是,蓝牙未显示在设备列表中,因此我们无法使用c#以编程方式连接)

2.IOGEAR的蓝牙4.0(型号GBU521W6)(在设备列表中显示,我们的应用程序可以检测设备,但是,HFP无法从应用程序或正常设备部分按预期工作)

所需的档案:

1.Hands-Free Profile(HFP)2.消息访问配置文件(MAP)3.电话簿访问配置文件(PBAP)

我们已经尝试过以下内容:

  1. 更新司机
  2. 尝试多次卸载安装
  3. 使用android,ios和windows手机

附注:我们的应用程序具有相同的代码适用于Windows 7

c# wpf bluetooth windows-10

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

在iOS 8中使用自定义键盘在iMessage中共享图像

我正在使用iOS 8自定义键盘,我使用像笑脸一样的图像来设计键盘.我希望这个键盘可以与iMessage一起使用.当我试图发送文本工作正常但无法在那里分享图像.我试过以下代码:

分享文字:(其工作正常)

-(void)shouldAddCharector:(NSString*)Charector{
    if ([Charector isEqualToString:@"Clear"]) {
        [self.textDocumentProxy deleteBackward];
    } else if([Charector isEqualToString:@"Dismiss"]){
        [self dismissKeyboard];
    } else {
        [self.textDocumentProxy insertText:Charector];
    }
}
Run Code Online (Sandbox Code Playgroud)

添加图片:(不工作)

-(void)shouldAddImage:(UIImage*)oneImage
{
        UIImage* onions = [UIImage imageNamed:@"0.png"];

        NSMutableAttributedString *mas;
        NSTextAttachment* onionatt = [NSTextAttachment new];
        onionatt.image = onions;
        onionatt.bounds = CGRectMake(0,-5,onions.size.width,onions.size.height);
        NSAttributedString* onionattchar = [NSAttributedString attributedStringWithAttachment:onionatt];

        NSRange r = [[mas string] rangeOfString:@"Onions"];
        [mas insertAttributedString:onionattchar atIndex:(r.location + r.length)];
        NSString *string =[NSString stringWithFormat:@"%@",mas];
        [self.textDocumentProxy insertText:string];
}
Run Code Online (Sandbox Code Playgroud)

是否有可能将图像传递给 [self.textDocumentProxy insertText:string];

以下附图显示了我想要如何使用此图像键盘.我很惊讶表情符号键盘会起作用吗?在此输入图像描述

keyboard ios emoji ios8 ios-app-extension

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

邀请朋友使用新的Facebook iOS SDK(Invitable vs taggable friends)

我正在努力应对新的Facebook SDK更改,在我的应用程序中,我希望能够将应用程序邀请发送给我所有的Facebook好友,在此之前可以使用图形API和FQL,但现在使用新的Facebook SDK我只得到朋友列表哪个已经在使用我的应用了.

我已经浏览了Facebook文档以及不同的博客,以下是我的发现:

邀请朋友:

- 在这种情况下,我们将收到所有朋友,但这是严格的应用程序,将属于类别游戏.此邀请将出现在用户Facebook墙的游戏部分.

可标记的朋友:

- 在这种情况下,我们也收到了所有朋友的临时令牌,但这只能用于发布用户墙或用户故事,我们不能用它来发送邀请,因为我们没有用户的实际用户ID.

有没有办法实现这个功能?

facebook facebook-graph-api ios facebook-ios-sdk

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

在iOS5中关闭dismissModalViewControllerAnimated时MFMailComposeViewController崩溃

我在使用conMail时使用MFMailComposeViewController来提供Mail功能,但是发送邮件后或当我想取消邮件时,它将崩溃。

下面是我的代码:

(IBAction)FnForPlutoSupportEmailButtonPressed:(id)sender {
{
    if ([MFMailComposeViewController canSendMail])
    {
        MFMailComposeViewController *mailer = [[MFMailComposeViewController alloc] init];

        mailer.mailComposeDelegate = self;

        [mailer setSubject:@"Need help from Pluto support team"];

        NSArray *toRecipients = [NSArray arrayWithObjects:@"support@myplu.to",nil];
        [mailer setToRecipients:toRecipients];


        NSString *emailBody = @"";

        [mailer setMessageBody:emailBody isHTML:NO];

        //mailer.modalPresentationStyle = UIModalPresentationPageSheet;

        [self presentModalViewController:mailer animated:YES];

    }
    else
    {
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Failure"
                                                        message:@"Your device doesn't support the composer sheet"
                                                       delegate:nil
                                              cancelButtonTitle:@"OK"
                                              otherButtonTitles: nil];
        [alert show];
    }
} }

    (void)mailComposeController:(MFMailComposeViewController*)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError*)error
{
// Notifies users about errors associated …
Run Code Online (Sandbox Code Playgroud)

iphone presentmodalviewcontroller ios mfmailcomposeviewcontroller

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

滚动到顶部时,uitableview autoupadate

我想在滚动到顶部时更新Uitableview.在facebook应用程序中,当我们将uitableview滚动到顶部时,它将显示"upadating"并在表视图的顶部插入新行.我想在我的应用程序中给出相同的效果.是否可以使用默认的uitableview方法进行设计,或者我们需要对其进行自定义.如果有人对此有所了解,请回复.

iphone objective-c ios

3
推荐指数
2
解决办法
5459
查看次数

如何暂停和恢复NStimer

可能重复:
如何以编程方式暂停NSTimer?

我有个问题.如何使用计时器暂停倒计时?我正在开发一款游戏.在游戏中,我需要在计时器暂停时进入下一个视图,并在返回后我想恢复它.

我在视图中尝试此代码:

[mytimer pause];

// to resume
[mytimer resume];
Run Code Online (Sandbox Code Playgroud)

我尝试了那段代码,但是我收到一条警告:"NSTimer可能无法响应'暂停'"

我建立了这个警告,当我按下暂停按钮时,应用程序崩溃了.

iphone

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