#pragma란 무엇인가
1587 단어 r
발췌문: Beginning.iOS.5.Development.exploring.the.iOS.SDK
1 #pragma mark -
2 #pragma mark Picker Data Source Methods
3 Any line of code that begins with #pragma is technically a compiler directive. More specifically, a #pragma marks a pragmatic, or compiler-specific, directive that won’t necessarily work with other compilers or in other environments. If the compiler doesn’t recognize the directive, it ignores it, though it may generate a warning. In this case, the #pragma directives are actually directives to the IDE, not the compiler, and they tell Xcode’s editor to put a break in the popup menu of methods and functions at the top of the editor pane. The first one puts the break in the menu. The second creates a text entry containing whatever the rest of the line holds, which you can use as a sort of descriptive header for groups of methods in your source code.
4 Some of your classes, especially some of your contro ller classes, are likely to get rather long, and the methods and functions popup menu makes navigating around your code much easier. Putting in #pragma directives and logically organizing your code will make that popup more efficient to use.
.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
데이터 분석, 데이터 과학 및 기계 학습을 위한 데이터 이해 - 2부중앙값을 계산하려면 데이터를 정렬(오름차순 또는 내림차순은 중요하지 않음)한 다음 중간 지점을 찾습니다. [a] n이 짝수일 때 첫 번째 점=n2두 번째 점=n2+1 첫 번째~점 =\frac{n}{2} 두 번째~점 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.