小编Fir*_*ist的帖子

我可以在GPL许可下销售产品吗?

我有一些根据GPL许可条款的文本数据.我使用了这个文本数据并创建了一个iOS产品.我只使用了文本数据.

我可以付费出售我的产品吗?

提前致谢.

gpl

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

iOS中的UIActionSheet警告消息

我试图显示UIActionSheetUINavigationControlleriOS中.

当我使用时,[action showInView:self.view];他们向我展示了如下警告信息.

Presenting action sheet clipped by its superview. Some controls might not respond to touches. On iPhone try -[UIActionSheet showFromTabBar:] or -[UIActionSheet showFromToolbar:] instead of -[UIActionSheet showInView:].
Run Code Online (Sandbox Code Playgroud)

但是UIActionSheet显示正确,没有任何反应.

在我的iOS中,我支持横向模式,如下面的代码.

if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 3.0 ||
        UIDeviceOrientationIsPortrait([[UIDevice currentDevice] orientation])) {
        [action showInView:self.view];
    } else {
        [action showInView:self.view.window];
Run Code Online (Sandbox Code Playgroud)

我想知道警告信息很重要吗?

或者我可以忽略这些警告信息吗?

cocoa-touch uiactionsheet ios

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

iOS中的图像幻灯片自定义控件

我正在搜索iOS的Image SlideShow自定义控件.

喜欢以下图片

在此输入图像描述

cocoa-touch custom-controls ios

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

iOS navigationController pushViewController无法正常工作

我有一个故事板UINavigationController.导航控制器的根视图控制器称为rootViewController.

我试图以编程方式将视图控制器(取决于其他条件)更改为另一个名为的控制器loginViewController.

我试图viewDidLoad在rootViewController中这样做:

- (void)viewDidLoad
{

    [super viewDidLoad];

    loginViewController *viewController = [[loginViewController alloc] init];

    [self.navigationController pushViewController:viewController animated:YES];

}
Run Code Online (Sandbox Code Playgroud)

我没有得到任何错误,但它没有工作.

它只是使用顶部导航后退按钮加载导航控制器,但屏幕的其余部分为黑色.这就像它没有加载任何视图控制器.

我想弄清楚我做错了什么.

对此的任何帮助都会很棒.

谢谢

cocoa-touch objective-c storyboard uinavigationcontroller ios

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

如何像iOS7一样制作UITableView单元格分隔符?

在iOS 7中,默认UITableViewCell separator是从左侧稍微切割,可以显示单元格imageView.

我可以使用以下代码更改为完整尺寸.

[self.tableViewMain setSeparatorInset:UIEdgeInsetsMake(0, 0, 0, 0)];
Run Code Online (Sandbox Code Playgroud)

当我的iPad方向是Portrait时我想改变它.

所以我尝试在旋转事件中遵循代码

if(UIInterfaceOrientationIsLandscape(self.interfaceOrientation) ||(UIDeviceOrientationIsLandscape([UIDevice currentDevice].orientation)))
    {
        [self.tableViewMain setSeparatorInset:UIEdgeInsetsMake(0, 0, 0, 0)];
    }

    else
    {
        [self.tableViewMain setSeparatorInset:UIEdgeInsetsMake(15, 0, 0, 0)];
    }
Run Code Online (Sandbox Code Playgroud)

我想手动操作iOS7 Cell Separator.

我该怎么做?

objective-c uitableview ios7

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

UIActionSheet _button valueforKey在iOS8中崩溃

iOS 8,代码崩溃后添加图像UIActionSheet's _button valueForKey.

UIActionSheet *action = [[UIActionSheet alloc ] initWithTitle:@"Choose Action!" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil otherButtonTitles:@"Start Auto Scroll", nil];

[[[action valueForKey:@"_buttons"] objectAtIndex:0] setImage:[UIImage imageNamed:@"autoScroll.png"] forState:UIControlStateNormal];

[action showInView:self.view];
Run Code Online (Sandbox Code Playgroud)

崩溃日志是

*** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<UIActionSheet 0x7ff6d8c61030> valueForUndefinedKey:]: this class is not key value coding-compliant for the key _buttons.'
Run Code Online (Sandbox Code Playgroud)

我怎么解决呢?

uiactionsheet ios ios8

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

为什么NSLog()在方法返回后没有做任何事情?

我注意到,当我的方法运行时,没有任何内容打印到控制台:

- (BOOL)theTemporyFunction
{
    return YES;
    NSLog(@"Events");
}
Run Code Online (Sandbox Code Playgroud)

但是当我改变陈述的顺序时:

- (BOOL)theTemporyFunction
{
    NSLog(@"Events");
    return YES;
}
Run Code Online (Sandbox Code Playgroud)

NSLog()不运行.

两个版本都编译,为什么NSLog()第一个似乎没有工作?

return objective-c

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