mbprogresshud

    1热度

    1回答

    我已经创建了一个类别类。由于我的应用程序主要用于API调用。所以我已经使用MBProgressHUD来显示加载指标,而我的API正在加载。 -(void)loading { MBProgressHUD *HUD = [[MBProgressHUD alloc] initWithView:self.view]; [self.view addSubview:HUD]; H

    0热度

    1回答

    no sign of networkI want to add MBProgressHUD to a queue, if the queue has MBProgressHUD show, do not add MBProgressHUD to this queue, if the queue is not MBProgressHUD display is added to the queue.

    1热度

    2回答

    我是iOS开发新手,我想运行这个项目https://github.com/google/uribeacon/tree/master/ios-uribeacon ,我认为它应该可以开箱即用。 我试图构建和运行uribeacon样本,但我不能,因为我得到这个错误'MBProgressHUD/MBProgressHUD.h' file not found 我见过有这个项目https://github.c

    0热度

    1回答

    MBProgressView无法在UICollectionView上等待iOS 它在其他视图控制器中工作正常,但是当我在uicollection视图控制器中使用时,它不在屏幕上显示,请给我一个解决方案。 请检查下面的链接 UICollectionVIEW Code

    7热度

    5回答

    有没有办法在屏幕的底部或顶部进行MBProgressHUD显示? 我已经尝试使用[hud setFrame:....];,initWithFrame和设置hud的center属性来设置框架。这些都没有奏效。尝试这些方法后,我做了一个NSLog()帧。值已经改变,但仍然显示在屏幕中央。 甲一点要注意,在HUD使用的UIWindow显示: UIWindow *window = [[[UIApplica

    1热度

    1回答

    我想用NSURLConnection使用MBProgressHUD,但我不知道如何使动画旋转MBProgressHUDModeDeterminate。 基本上我有这样的代码在viewDidLoad中: - (void)viewDidLoad { [super viewDidLoad]; [self fetchFromServer]; self.HUD = [ [

    0热度

    2回答

    我想设置显示和解除Singleton中HUD的方法。我用singleton写这个方法: - (void)showHUD { activityHud = [[MBProgressHUD alloc] init]; activityHud.delegate = self; } 但是什么也没有发生。对于解雇,我不知道如何写......任何答案都会非常有帮助。谢谢!

    3热度

    2回答

    我试图使用MBProgressHUD(https://github.com/jdg/MBProgressHUD),并能够得到它与我的Podfile一起工作。但是,现在没有出现hud。有没有人能够成功地使用swift进行工作? Podfile platform :ios, '8.0' pod 'AFNetworking' pod 'MBProgressHUD', '~> 0.8' Movie

    0热度

    1回答

    经过一些教程和调试,我设法有一个MBProgressHUD(与cocoapods)在我的应用程序(在Swift中)工作。现在,我正在尝试在我想要的进度完成时执行MBProgressHUD。所以现在,我想用一些文字显示复选标记。问题是我不知道如何将图像(图标)放在文本的前面。 我的代码工作(不勾选): self.spinningCompleted = MBProgressHUD.showHUDAdd

    0热度

    1回答

    假设我有以下代码: @IBAction func signInButtonPressed(sender: AnyObject) { MBProgressHUD.showHUDAddedTo(self.view, animated: true) if let url = NSURL(string: someURL) { // ... let ta