小编Raj*_*ari的帖子

当我们从testflight或diawi iOS下载构建时,推送通知不会出现

我已成功创建.pem和.p12文件, 网址为http://www.raywenderlich.com/32960/apple-push-notification-services-in-ios-6-tutorial-part-1 Tutorial.我们使用java作为服务器,所以我也使用此链接导出我的.p12密钥,因为直接导出.p12文件时出错. 无法使用Javapns/Javaapns SSL握手失败发送推送通知.

一切都在调试模式下运行良好.每当我通过xcode安装构建时,我每次都会成功收到推送通知.但在testflight或diawi上存档并上传后再将其安装到设备上后,我没有得到任何推送通知.我成功从apns服务器获取设备令牌.在服务器端调试时,我们发现他们收到的设备令牌并发送通知无效.此响应由apns服务器发送到我们的java服务器..我正在使用Xcode 6.0或更高版本,我的应用程序与ios7.0或更高版本兼容.是的,我已经为ios 8和7注册远程通知做了检查.有人遇到过这个问题,因为早先在xcode 5系列中这没有发生过.请帮忙

任何帮助将不胜感激.谢谢

push-notification apple-push-notifications ios ios7 ios8

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

SdWebImage 问题中的活动指示器

我有一个水平集合视图,它有 20 个带有 UIImageView 的单元格我只想显示活动指示器,直到图像下载完成。我正在使用新的 SDWebImage 库,其中我们的方法为sd_setImageWithURL 直到现在我正在做的是

__block UIActivityIndicatorView *activityIndicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
activityIndicator.center = cell.photoOneImageView.center;
activityIndicator.hidesWhenStopped = YES;

[cell.photoOneImageView sd_setImageWithURL:[NSURL URLWithString:@"https://scontent-sjc.xx.fbcdn.net/hphotos-xpa1/v/t1.0-9/p480x480/11073324_10153728863852926_4010319763478440264_n.jpg?oh=590934059508b7da235a46fc39e08063&oe=55B61458"] 
placeholderImage:[UIImage imageNamed:@"placeholder.jpg"] 
completed:^(UIImage *image, NSError *error,  SDImageCacheType cacheType, NSURL *imageURL) {
    [activityIndicator stopAnimating];
    [activityIndicator removeFromSuperview];
    }];

[cell.photoOneImageView addSubview:activityIndicator];
[activityIndicator startAnimating];
Run Code Online (Sandbox Code Playgroud)

我在cellForItemAtIndexPath方法中编写此代码它有时会在 1 个单元格上显示多个指标,有时当我们水平滚动集合视图时,它们也不会删除。

我看到了这个https://github.com/rs/SDNetworkActivityIndi​​cator但我无法使用它。没有运气。当图像完成指示器消失时,是否有人在 tebleview 单元格或集合视图单元格中实现了活动指示器。请帮忙。任何帮助将不胜感激。谢谢

objective-c uiactivityindicatorview ios sdwebimage uicollectionview

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

应用程序的实现:openURL:sourceApplication:annotation

我在Xcode8发布之前开始研究应用程序然后切换,当我尝试使用Facebook登录登录应用程序时出现以下错误

应用程序的实现:openURL:sourceApplication:annotation:not found.请将处理程序添加到App Delegate中.类:GhostGab.AppDelegate

我检查了所有的设置,他们似乎很好.任何帮助将不胜感激

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
    // Override point for customization after application launch.
    FIRApp.configure()
    FBSDKApplicationDelegate.sharedInstance().application(application, didFinishLaunchingWithOptions: launchOptions)
    return true
}

  func application(application: UIApplication, openURL url: URL, sourceApplication: String?, annotation: AnyObject) -> Bool {

    let facebookDidHandle = FBSDKApplicationDelegate.sharedInstance().application(
        application,
        open: url,
        sourceApplication: sourceApplication,
        annotation: annotation)
    // Add any custom logic here.
    return facebookDidHandle
}
Run Code Online (Sandbox Code Playgroud)

facebook ios appdelegate swift xcode8

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

在 Swift 中打印 Set 的一个元素

我有一套这样的:

var someItems: Set = [7,3,8]
Run Code Online (Sandbox Code Playgroud)

我只想打印出上面集合的数字 7。

我怎样才能做到这一点?

set swift

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

swift 以串行顺序同步多个 Web 服务调用

我点击了 10 次 Web 服务 url 并得到响应。我正在使用AlamofireSwiftyJSON。这是我的控制器代码

class ViewController: UIViewController {

    let dispatchGroup = DispatchGroup()

    var weatherServiceURL = "http://samples.openweathermap.org/data/2.5/weather?q=London,uk&appid=b6907d289e10d714a6e88b30761fae22"

    override func viewDidLoad() {
        super.viewDidLoad()
        start()
    }

    func start() {
        weatherService()
        dispatchGroup.notify(queue: .main) {
            print("All services complete")
        }
    }

    func weatherService() {
        for i in 1...10 {
            dispatchGroup.enter()
            APIManager.apiGet(serviceName: self.weatherServiceURL, parameters: ["counter":i]) { (response:JSON?, error:NSError?, count:Int) in
                if let error = error {
                    print(error.localizedDescription)
                    return
                }
                guard let response = response else { return }
                print("\n\(response) \n\(count) …
Run Code Online (Sandbox Code Playgroud)

grand-central-dispatch ios dispatch-async swift dispatchworkitem

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

iphone定位服务警报回叫允许并且不允许处理

我有一个按钮,其中点击我授权我的应用程序启用位置服务.我想从警报中捕获允许按钮事件.当用户按下允许时,我的按钮颜色将变为其他颜色.我无法捕获允许按钮的回调.但是,我可以通过此链接捕获不允许按钮事件

位置服务iOS提醒回电

请任何人都可以告诉我如何捕获允许按钮点击并成功我想要我的代码.

iphone objective-c mapkit cllocationmanager ios8

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

斯威夫特3 - !vs?可选功能参数

在Swift 3中,当一个具有可选的函数参数时,函数之间的区别是:

func doThis(num: Int!)
Run Code Online (Sandbox Code Playgroud)

func doThat(num: Int?) 
Run Code Online (Sandbox Code Playgroud)

swift swift3

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