小编jer*_*jer的帖子

what higher-level language is most like c?

I've been learning C: it's a beautiful, well-thought-out language. However, it is so low-level that writing any sort of major project becomes tedious.

What higher-level language has the most C-like syntax—but without all the clutter that you find in something like C++. Does one exist?

c programming-languages

9
推荐指数
5
解决办法
3494
查看次数

使用CoreText和触摸创建可单击的操作

我在视图中有一些代码,它使用CoreText绘制一些属性文本.在这里,我正在搜索网址并将其设为蓝色.我们的想法是不要UIWebView为了获得可点击链接而带来所有开销.一旦用户点击该链接(而不是整个表视图单元格),我想触发一个委托方法,然后该方法将用于呈现一个模态视图,其中包含一个转到该URL的Web视图.

我将路径和字符串本身保存为视图的实例变量,并且绘图代码发生在-drawRect:(我为了简洁而将其遗漏).

然而,我的触摸处理程序虽然不完整,却没有打印出我期望它的内容.它在下面:

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
    UITouch *touch = [touches anyObject];
    CGPoint point = [touch locationInView:self];
    CGContextRef context = UIGraphicsGetCurrentContext();

    NSLog(@"attribString = %@", self.attribString);
    CTFramesetterRef framesetter = CTFramesetterCreateWithAttributedString((CFAttributedStringRef)self.attribString);
    CTFrameRef ctframe = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, self.attribString.length), attribPath, NULL);

    CFArrayRef lines = CTFrameGetLines(ctframe);
    for(CFIndex i = 0; i < CFArrayGetCount(lines); i++)
    {
        CTLineRef line = CFArrayGetValueAtIndex(lines, i);
        CGRect lineBounds = CTLineGetImageBounds(line, context);

        // Check if tap was on our line
        if(CGRectContainsPoint(lineBounds, point))
        {
            NSLog(@"Tapped line");
            CFArrayRef …
Run Code Online (Sandbox Code Playgroud)

iphone objective-c ipad core-text

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

CoreText映射字符

我有一些触摸处理程序,它响应了一个视图的点击,我已经绘制了一些属性文本.通过这个,我已经到了我有一个CTRunRef(和相关的行)以及数字的点在该运行中的字形.

我无法轻易弄清楚的是,我如何能够获取这些字形,并且,鉴于我的属性字符串,将其映射到字符串中的字符.

具体问题是我想知道用户在视图中点击了什么单词,因此我可以处理该单词是否为URL并触发自定义委托方法,以便我可以使用它打开Web视图.我有所有可能的子字符串,我只是不知道如何映射用户点击特定子字符串的位置.

任何帮助将不胜感激.

更新:我实际上已经完成了另一种方式,根据另一个人的堆栈溢出建议.基本上我所做的就是设置一个自定义属性,@"MyAppLinkAddress"使用我在将字符串转换为属性字符串时找到的URL值.这是在我绘制字符串之前发生的.因此,当敲击事件发生时,我只检查该属性是否存在,如果存在,则调用我的委托方法,如果不存在,则忽略它.这是我现在喜欢的方式,但是我要打开这个问题多了几天,如果有人能拿出答案的话,我很高兴接受它,如果它是一个有效的解决方案,那么其他一些也许能够在将来的某个时候找到这些信息.

iphone ipad core-text

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

Io语言如何自动检测死锁?

我读过Io语言Futures可以自动检测死锁.我对此一无所知,并且看到了一些语法.Io语言如何检测死锁?

concurrency deadlock iolanguage

8
推荐指数
2
解决办法
579
查看次数

如何将字符串转换为Io中的列表?

例如,我想"hello"变成list(104, 101, 108, 108, 111)list("h", "e", "l", "l", "o")

到目前为止,我已经创建了一个空列表,自己使用foreach并将每个项目附加到列表中,但这并不是一个简洁的方法.

string list sequence iolanguage

8
推荐指数
2
解决办法
813
查看次数

当popover仍然可见时达到

-(void)showsearch:(id)sender
{
    SearchViewController *searchview =[[SearchViewController alloc] initWithNibName:@"SearchViewController" bundle:nil];

    settingpopoverController = [[[UIPopoverController alloc] 
                                    initWithContentViewController:searchview] autorelease];               
    [searchview release];
    [settingpopoverController presentPopoverFromBarButtonItem:sender 
                                    permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];


}
Run Code Online (Sandbox Code Playgroud)

当我点击按钮时,应用程序崩溃了,我收到了[UIPopoverController dealloc] reached while popover is still visible.消息.

ipad uipopovercontroller

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

如何在目标C中设置工具栏的高度?

我在我的applicationDidFinishLaunching中有这个代码:

navController.toolbarHidden = NO;
[navController toolbar].tintColor = [UIColor darkGrayColor];
[[navController toolbar] setFrame:CGRectMake(0.0,0.0,320.0,180.0)];
Run Code Online (Sandbox Code Playgroud)

前两行肯定会对UI产生影响.例如,如果我将toolbarHidden设置为YES,它肯定是隐藏的.但是,当我尝试设置框架并自定义工具栏高度时,不会发生任何更改.有谁知道如何解决这一问题?

iphone objective-c uitoolbar

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

csh脚本中的多个单词列表foreach循环

我有一个Cshell脚本,我正在修改,以具有相关的输入和输出位置.功能都发生在foreach循环中,如下所示:

set INPUT_LOCATION_LIST = "loc1 loc2 loc3 loc4"
foreach location ($INPUT_LOCATION_LIST)
#***Do some stuff ***
end
Run Code Online (Sandbox Code Playgroud)

我希望有一个输出列表,其值不同于输入列表,但是每次迭代都会遍历foreach循环.foreach的人只是

foreach name (wordlist)
Run Code Online (Sandbox Code Playgroud)

作为定义.所以只处理一个.我目前处理它的想法是让wordlist包含输入和输出位置,然后在脚本中解析它:

set INPUT_LOCATION_LIST = "loc1;out1 loc2;out2 loc3;out3 loc4;out4"
Run Code Online (Sandbox Code Playgroud)

所以我想知道是否有人有更好的方法来做到这一点.

shell csh

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

如何更改UIStatus栏颜色?

我正在尝试将状态栏颜色更改为黑色半透明.我已经更改了我的Info.plist UIStatusBarStyle UIStatusBarStyleBlackTranslucent

我已经将这些代码行添加到applicationDidFinishLaunching :()

[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackTranslucent animated:NO];

完成这些更改后,我的状态栏变为黑色半透明,直到我的启动画面出现.有一次,我的应用程序被完全加载,当显示内容时,它再次回到默认的灰色.任何人都可以告诉我我哪里出错或者我应该在哪里更改?

提前致谢.

iphone xcode ipad

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

如何使用c ++从HTML中提取文本?

如何使用c ++解析HTML标签?

例如:

<html><body>examlpe text </body></html>
Run Code Online (Sandbox Code Playgroud)

html c++

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

Rails中的狂欢商业

我是Ruby on Rails的新手,我想安装"Spreecommerce".我可以帮忙做这件事吗?我不知道从哪里开始.任何帮助都会非常值得感谢,谢谢!

ruby-on-rails

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